From 0ddf7ba005e0c4f123f9de2f9b05504125249247 Mon Sep 17 00:00:00 2001 From: Frank Zhu Date: Fri, 22 Mar 2024 16:09:03 -0500 Subject: [PATCH] remove master branch trigger in ci workflows --- .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 bc05ef7615c..c30d2136215 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 8178fd588da..e9773e33246 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 cc934ecf9b6..caa1344d027 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: @@ -203,7 +201,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: @@ -226,7 +224,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