Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
9 changes: 9 additions & 0 deletions .github/actionlint.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
paths:
# Accepted style advisories in existing templates.
"{compile,deploy,start-preview,close-preview,refresh,lightdash-validate}.yml":
ignore:
- "shellcheck reported issue"
# Genuine validity error tracked in PROD-10126; remove when that ticket is fixed.
close-preview.yml:
ignore:
- "invalid activity type \"merged\""
17 changes: 17 additions & 0 deletions .github/workflows/lint-templates.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
name: Lint workflow templates

on:
pull_request:
push:
branches:
- main

jobs:
actionlint:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v6
- name: Lint root-level workflow templates
uses: docker://rhysd/actionlint:1.7.12
with:
args: compile.yml deploy.yml start-preview.yml close-preview.yml refresh.yml lightdash-validate.yml
9 changes: 9 additions & 0 deletions renovate.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
{
"$schema": "https://docs.renovatebot.com/renovate-schema.json",
"extends": ["config:recommended"],
"github-actions": {
"managerFilePatterns": [
"/^(?:compile|deploy|start-preview|close-preview|refresh|lightdash-validate)\\.yml$/"
]
}
}