From fcf12f68d239398f628c76b4e6e69d9bf8b347cc Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Fran=C3=A7ois-Xavier=20Algrain?= Date: Mon, 14 Oct 2024 09:21:57 +0200 Subject: [PATCH] ci: ensure repository run only allowed actions --- .github/workflows/github-actions-validator.yml | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) create mode 100644 .github/workflows/github-actions-validator.yml diff --git a/.github/workflows/github-actions-validator.yml b/.github/workflows/github-actions-validator.yml new file mode 100644 index 0000000..dcc8658 --- /dev/null +++ b/.github/workflows/github-actions-validator.yml @@ -0,0 +1,16 @@ +name: "CI: github-actions-validator" + +on: + pull_request: + +concurrency: + group: ${{ github.head_ref }}-github-actions-validator + cancel-in-progress: true + +jobs: + github-actions-validator: + name: Github-actions-validator + runs-on: ubuntu-latest + steps: + - uses: actions/checkout@v4 + - uses: lumapps/github-actions-validator@v2