Skip to content

Commit 747732a

Browse files
committed
Ensure changelog check does not run on main or master
1 parent 5b8fb9c commit 747732a

File tree

2 files changed

+1
-4
lines changed

2 files changed

+1
-4
lines changed

.github/workflows/checks.yml

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -46,9 +46,6 @@ jobs:
4646
- name: SCM Checkout
4747
uses: actions/checkout@v4
4848

49-
- name: Fetch the main branch
50-
run: git fetch origin main
51-
5249
- name: Setup Python & Poetry Environment
5350
uses: ./.github/actions/python-environment
5451

exasol/toolbox/templates/github/workflows/checks.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -50,7 +50,7 @@ jobs:
5050
Changelog:
5151
name: Changelog Update Check
5252
runs-on: ubuntu-24.04
53-
if: ${{ github.ref != 'refs/heads/main' }}
53+
if: ${{ github.ref != 'refs/heads/main' && github.ref != 'refs/heads/master' }}
5454

5555
steps:
5656
- name: SCM Checkout

0 commit comments

Comments
 (0)