Skip to content

Commit

Permalink
remove master branch trigger in ci workflows (#12554)
Browse files Browse the repository at this point in the history
  • Loading branch information
momentmaker authored Apr 12, 2024
1 parent 7331cbf commit 3896768
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 9 deletions.
1 change: 0 additions & 1 deletion .github/workflows/build-publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,6 @@ on:
tags:
- "v*"
branches:
- master
- "release/**"

jobs:
Expand Down
3 changes: 0 additions & 3 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,9 +2,6 @@ name: "Build Chainlink"

on:
pull_request:
push:
branches:
- master

jobs:
build-chainlink:
Expand Down
8 changes: 3 additions & 5 deletions .github/workflows/ci-core.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,6 @@ concurrency:
on:
push:
branches:
- master
- develop
- "release/*"
merge_group:
Expand All @@ -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:
Expand All @@ -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:
Expand Down Expand Up @@ -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:
Expand All @@ -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
Expand Down

0 comments on commit 3896768

Please sign in to comment.