Skip to content

Commit

Permalink
Trigger workflow changes
Browse files Browse the repository at this point in the history
  • Loading branch information
jcortejoso authored and karlb committed Sep 10, 2024
1 parent ba7c9c8 commit 541c8f6
Showing 1 changed file with 8 additions and 2 deletions.
10 changes: 8 additions & 2 deletions .github/workflows/docker-build-scan.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,10 @@ on:
branches:
- 'master'
- 'celo*'
push:
branches:
- 'master'
- 'celo*'
workflow_dispatch:

jobs:
Expand All @@ -25,7 +29,8 @@ jobs:
if: |
contains(needs.detect-files-changed.outputs.files-changed, 'go.sum') ||
contains(needs.detect-files-changed.outputs.files-changed, 'op-chain-ops/cmd/celo-migrate') ||
contains(needs.detect-files-changed.outputs.files-changed, 'op-chain-ops/Dockerfile')
contains(needs.detect-files-changed.outputs.files-changed, 'op-chain-ops/Dockerfile') ||
github.event_name == 'workflow_dispatch'
permissions:
contents: read
id-token: write
Expand Down Expand Up @@ -59,7 +64,8 @@ jobs:
contains(needs.detect-files-changed.outputs.files-changed, 'op-node/') ||
contains(needs.detect-files-changed.outputs.files-changed, 'op-batcher/') ||
contains(needs.detect-files-changed.outputs.files-changed, 'op-proposer/') ||
contains(needs.detect-files-changed.outputs.files-changed, 'op-service/')
contains(needs.detect-files-changed.outputs.files-changed, 'op-service/') ||
github.event_name == 'workflow_dispatch'
permissions:
contents: read
id-token: write
Expand Down

0 comments on commit 541c8f6

Please sign in to comment.