From b5a9f17d6d80dff2ba5d413b1986feae619790d9 Mon Sep 17 00:00:00 2001 From: Willy Date: Sat, 2 Oct 2021 17:26:26 +0200 Subject: [PATCH] temporarily disable PR CI trigger * I don't want my commits to spam the upstream repo with lots of failed action jobs for my incomplete PR * prevent accidentally creating a release (shouldn't happen with the modified workflow in the head branch (github uses base branch workflows) but you never know) --- .github/workflows/build.yml | 19 ++++++++++--------- 1 file changed, 10 insertions(+), 9 deletions(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 500fab3d..9e920e1c 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -3,9 +3,10 @@ on: push: paths-ignore: - "**.md" - pull_request: - paths-ignore: - - "**.md" +# TODO turn PR trigger back on +# pull_request: +# paths-ignore: +# - "**.md" env: is_stable: | @@ -85,19 +86,19 @@ jobs: rm -rf source.tar.gz build: - needs: [frontend, test-postman-sqlite, test-postman-mysql, test-postman-postgres] + needs: [ frontend, test-postman-sqlite, test-postman-mysql, test-postman-postgres ] runs-on: ubuntu-latest strategy: matrix: - platform: [linux] - arch: [386, amd64, arm-7, arm-6, arm64] + platform: [ linux ] + arch: [ 386, amd64, arm-7, arm-6, arm64 ] include: - platform: darwin arch: 386 - platform: darwin arch: amd64 - platform: windows - arch: [amd64, 386] + arch: [ amd64, 386 ] steps: - uses: actions/checkout@v2 @@ -492,7 +493,7 @@ jobs: timeoutRequest: 30000 delayRequest: 600 -# TODO everything from here on is stable/unstable release only + # TODO everything from here on is stable/unstable release only # all other release jobs should be based on this release-precondition-check: @@ -500,7 +501,7 @@ jobs: github.event_name == 'push' && (github.ref == 'refs/heads/stable' || github.ref == 'refs/heads/unstable') - needs: [build, test-postman-sqlite, test-postman-mysql, test-postman-postgres] + needs: [ build, test-postman-sqlite, test-postman-mysql, test-postman-postgres ] runs-on: ubuntu-latest steps: - name: dummy operation