From 6264b5a2badba62500a5a7e7f1366493a62fa618 Mon Sep 17 00:00:00 2001 From: Keith Smiley Date: Thu, 16 Sep 2021 14:17:20 -0700 Subject: [PATCH] Add GitHub actions instant-failure (#241) --- .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 00000000..9db6fb0a --- /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