Skip to content

Commit

Permalink
Trigger on pull_request workflows on all branches
Browse files Browse the repository at this point in the history
There are TIER 0..2 on pull request workflows that should check the PR
with CI. These workflows were targeted only to `main` branch that lead
to not being executed on release-* branches. Updated to trigger on all
branches.

Fixes: #173

Signed-off-by: Marek Aufart <maufart@redhat.com>
  • Loading branch information
aufi committed Sep 6, 2024
1 parent 08a5f21 commit fa35bae
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 6 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/main-tier0.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,11 +2,11 @@ name: Test TIER0

on:
pull_request:
branches: [ "main" ]
branches: [ "*" ]
paths-ignore:
- '**.md'
push:
branches: [ "main" ]
branches: [ "*" ]
paths-ignore:
- '**.md'

Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/main-tier1.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,11 +2,11 @@ name: Test TIER1

on:
pull_request:
branches: [ "main" ]
branches: [ "*" ]
paths-ignore:
- '**.md'
push:
branches: [ "main" ]
branches: [ "*" ]
paths-ignore:
- '**.md'

Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/main-tier2.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,11 +2,11 @@ name: Test TIER2

on:
pull_request:
branches: [ "main" ]
branches: [ "*" ]
paths-ignore:
- '**.md'
push:
branches: [ "main" ]
branches: [ "*" ]
paths-ignore:
- '**.md'

Expand Down

0 comments on commit fa35bae

Please sign in to comment.