From c8b37694eb55530e8891f4b404282d7441e39ac1 Mon Sep 17 00:00:00 2001 From: Jerboa-app Date: Sun, 4 Aug 2024 09:58:08 +0100 Subject: [PATCH] testing pr --- .github/workflows/check-pr.yml | 20 ++++++++++++++++++++ 1 file changed, 20 insertions(+) create mode 100644 .github/workflows/check-pr.yml diff --git a/.github/workflows/check-pr.yml b/.github/workflows/check-pr.yml new file mode 100644 index 0000000..1bde235 --- /dev/null +++ b/.github/workflows/check-pr.yml @@ -0,0 +1,20 @@ +name: Check tags + +on: + pull_request: + types: + - opened + - labeled + - unlabeled + - reopened + - synchronize + +jobs: + fail-for-testing: + runs-on: ubuntu-latest + steps: + - name: requires testing + if: contains(github.event.pull_request.labels.*.name, 'Requires testing') + run: | + echo "This PR is currently requires testing" + exit 1 \ No newline at end of file