From 07e36ca8e396cbfe20a235448ca063a42fa260dd Mon Sep 17 00:00:00 2001 From: David Mays Date: Thu, 12 Sep 2024 16:21:36 +0100 Subject: [PATCH] Add Action Linting while we're at it. --- .github/workflows/actionlint.yaml | 12 ++++++++++++ 1 file changed, 12 insertions(+) create mode 100644 .github/workflows/actionlint.yaml diff --git a/.github/workflows/actionlint.yaml b/.github/workflows/actionlint.yaml new file mode 100644 index 00000000..e0f162dd --- /dev/null +++ b/.github/workflows/actionlint.yaml @@ -0,0 +1,12 @@ +name: Lint GitHub Actions +on: + push: + paths: ['.github/**'] +jobs: + actionlint: + runs-on: ubuntu-latest + steps: + - uses: actions/checkout@v4 + with: + show-progress: false + - uses: alphagov/govuk-infrastructure/.github/actions/actionlint@main \ No newline at end of file