From 3896768a601dda69a357b40ad8b897dfe2f5d8c1 Mon Sep 17 00:00:00 2001 From: frank zhu Date: Fri, 12 Apr 2024 14:30:18 -0700 Subject: [PATCH] remove master branch trigger in ci workflows (#12554) --- .github/workflows/build-publish.yml | 1 - .github/workflows/build.yml | 3 --- .github/workflows/ci-core.yml | 8 +++----- 3 files changed, 3 insertions(+), 9 deletions(-) diff --git a/.github/workflows/build-publish.yml b/.github/workflows/build-publish.yml index d243a75467e..00089d1fdde 100644 --- a/.github/workflows/build-publish.yml +++ b/.github/workflows/build-publish.yml @@ -6,7 +6,6 @@ on: tags: - "v*" branches: - - master - "release/**" jobs: diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 215b9026620..193a7a5d671 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -2,9 +2,6 @@ name: "Build Chainlink" on: pull_request: - push: - branches: - - master jobs: build-chainlink: diff --git a/.github/workflows/ci-core.yml b/.github/workflows/ci-core.yml index 9684b27955c..9eaf31d0ba2 100644 --- a/.github/workflows/ci-core.yml +++ b/.github/workflows/ci-core.yml @@ -9,7 +9,6 @@ concurrency: on: push: branches: - - master - develop - "release/*" merge_group: @@ -19,7 +18,7 @@ on: workflow_dispatch: inputs: distinct_run_name: - description: 'A unique identifier for this run, used when running from other repos' + description: "A unique identifier for this run, used when running from other repos" required: false type: string evm-ref: @@ -29,7 +28,6 @@ on: type: string jobs: - filter: # No need to run core tests if there are only changes to the integration-tests name: Detect Changes permissions: @@ -211,7 +209,7 @@ jobs: needs: [filter, core] name: Flakey Test Detection runs-on: ubuntu-latest - if: ${{ always() && github.actor != 'dependabot[bot]' }} + if: ${{ always() && github.actor != 'dependabot[bot]' }} env: CL_DATABASE_URL: postgresql://postgres:postgres@localhost:5432/chainlink_test?sslmode=disable steps: @@ -234,7 +232,7 @@ jobs: - name: Touching core/web/assets/index.html if: ${{ needs.filter.outputs.changes == 'true' }} run: mkdir -p core/web/assets && touch core/web/assets/index.html - - name: Download Go vendor packages + - name: Download Go vendor packages if: ${{ needs.filter.outputs.changes == 'true' }} run: go mod download - name: Replace chainlink-evm deps