From b2774ab9458ffd0202e2c4880e2a181134953beb Mon Sep 17 00:00:00 2001 From: Keith Smiley Date: Thu, 16 Sep 2021 14:17:16 -0700 Subject: [PATCH] Add GitHub actions instant-failure (#60) --- .github/workflows/actions.yml | 6 ++++++ 1 file changed, 6 insertions(+) create mode 100644 .github/workflows/actions.yml diff --git a/.github/workflows/actions.yml b/.github/workflows/actions.yml new file mode 100644 index 0000000..9db6fb0 --- /dev/null +++ b/.github/workflows/actions.yml @@ -0,0 +1,6 @@ +on: [push, pull_request] +jobs: + update-ci: + runs-on: ubuntu-latest + steps: + - run: echo "CI is no longer running on this repo, update the files in .github/workflows to re-enable it. See the .travis.yml file for your previous CI config"; exit 1