summaryrefslogtreecommitdiff
path: root/ftdetect/githubaction.lua
blob: a6e11cfa988d3e27b46ce82752c6fccb73bd182b (plain)
1
2
3
4
5
6
7
-- this allows `actionlint` to only yaml files that are actions
vim.filetype.add({
	pattern = {
		[".*/.github/workflows/.*%.yml"] = "yaml.githubaction",
		[".*/.github/workflows/.*%.yaml"] = "yaml.githubaction",
	},
})