summaryrefslogtreecommitdiff
path: root/nixvim/filetypes/github-action.nix
blob: c057de015c31e1e4859bbff2ed2fe1701d5f3ac6 (plain)
1
2
3
4
5
6
7
8
{
  # yes this is very silly
  # but it makes sure actionlint won't lint *every* yaml file
  filetype.pattern = {
    ".*/.github/workflows/.*%.yml" = "yaml.githubaction";
    ".*/.github/workflows/.*%.yaml" = "yaml.githubaction";
  };
}