From: Peter van Dijk Date: Thu, 9 Sep 2021 13:02:13 +0000 (+0200) Subject: gh actions: add dummy spelling workflow so we can prevent old versions from running X-Git-Tag: dnsdist-1.7.0-alpha1~35^2 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=refs%2Fpull%2F10707%2Fhead;p=thirdparty%2Fpdns.git gh actions: add dummy spelling workflow so we can prevent old versions from running --- 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