From 6896e963edd239321ca38b03d914b7cdcf605656 Mon Sep 17 00:00:00 2001 From: btromanova Date: Tue, 14 Jan 2020 17:54:44 +0100 Subject: [PATCH] Disable running GitHub actions on push (#60) Uber billing plan currently doesn't include using GithubActions. Having them enabled causes unactionable emails to be send and also shows that some checks are failing to pass. I'm removing the actions config for now. We can revert this PR once the billing plan situation is fixed, added a TODO note about it. --- .github/workflows/release.yml | 24 ------------------------ TODO.md | 1 + 2 files changed, 1 insertion(+), 24 deletions(-) delete mode 100644 .github/workflows/release.yml diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml deleted file mode 100644 index 83ae409..0000000 --- a/.github/workflows/release.yml +++ /dev/null @@ -1,24 +0,0 @@ -name: release - -on: - push: - tags: - - "*" - -jobs: - goreleaser: - runs-on: ubuntu-latest - steps: - - name: Checkout - uses: actions/checkout@master - - name: Set up Golang - uses: actions/setup-go@master - with: - go-version: '1.12' - - name: Do release - uses: goreleaser/goreleaser-action@master - with: - version: latest - args: release - env: - GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} diff --git a/TODO.md b/TODO.md index 4f53da7..b47627d 100644 --- a/TODO.md +++ b/TODO.md @@ -10,3 +10,4 @@ * for tests: set session dir to tmpdir that is cleaned up at exit * deb package so we can install on toolboxes * add a version compatibility check for 1.0 +* add github actions back once Uber billing situation is resolved. Revert PR #60