From 3c23a8fff837e6f1d609985bd32a30c5d998b11e Mon Sep 17 00:00:00 2001 From: Peter van Dijk Date: Thu, 9 Sep 2021 15:02:13 +0200 Subject: [PATCH] gh actions: add dummy spelling workflow so we can prevent old versions from running --- .github/workflows/spelling.yml | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) create mode 100644 .github/workflows/spelling.yml diff --git a/.github/workflows/spelling.yml b/.github/workflows/spelling.yml new file mode 100644 index 0000000000..7cf3961491 --- /dev/null +++ b/.github/workflows/spelling.yml @@ -0,0 +1,16 @@ +# spelling.yml is disabled per https://github.com/check-spelling/check-spelling/security/advisories/GHSA-g86g-chm8-7r2p +name: Workflow should not run! +on: + push: + branches: '' + +jobs: + placeholder: + name: Should be disabled + runs-on: ubuntu-latest + if: false + steps: + - name: Task + run: | + echo 'Running this task would be bad' + exit 1 -- 2.47.2