Skip to content

Commit

Permalink
[Backport 2.x] Stop duplicate CI runs on branch push by bots (#783)
Browse files Browse the repository at this point in the history
Stop duplicate CI runs on branch push by bots (#755)


(cherry picked from commit 9f83d94)

Signed-off-by: Daniel Widdis <[email protected]>
Signed-off-by: github-actions[bot] <github-actions[bot]@users.noreply.github.com>
Co-authored-by: github-actions[bot] <github-actions[bot]@users.noreply.github.com>
  • Loading branch information
1 parent cf74be7 commit 7dec529
Show file tree
Hide file tree
Showing 3 changed files with 10 additions and 4 deletions.
2 changes: 2 additions & 0 deletions .github/workflows/CI.yml
Original file line number Diff line number Diff line change
@@ -1,10 +1,12 @@
name: CI

on:
workflow_dispatch:
push:
branches-ignore:
- 'whitesource-remediate/**'
- 'backport/**'
- 'create-pull-request/**'
pull_request:
types: [opened, synchronize, reopened]

Expand Down
10 changes: 6 additions & 4 deletions .github/workflows/test_bwc.yml
Original file line number Diff line number Diff line change
@@ -1,11 +1,13 @@
name: BWC
on:
workflow_dispatch:
push:
branches:
- "**"
branches-ignore:
- 'whitesource-remediate/**'
- 'backport/**'
- 'create-pull-request/**'
pull_request:
branches:
- "**"
types: [opened, synchronize, reopened]

jobs:
Build-ff-linux:
Expand Down
2 changes: 2 additions & 0 deletions .github/workflows/test_security.yml
Original file line number Diff line number Diff line change
@@ -1,9 +1,11 @@
name: Security test workflow for Flow Framework
on:
workflow_dispatch:
push:
branches-ignore:
- 'whitesource-remediate/**'
- 'backport/**'
- 'create-pull-request/**'
pull_request:
types: [opened, synchronize, reopened]

Expand Down

0 comments on commit 7dec529

Please sign in to comment.