Skip to content

Commit

Permalink
ci: fix branch name in workflows
Browse files Browse the repository at this point in the history
  • Loading branch information
JaZo committed Nov 24, 2023
1 parent 2954d01 commit 5a6fb24
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/run-tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,9 +2,9 @@ name: run-tests

on:
push:
branches: [main]
branches: [master]
pull_request:
branches: [main]
branches: [master]

jobs:
test:
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/update-changelog.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ jobs:
- name: Checkout code
uses: actions/checkout@v4
with:
ref: main
ref: master

- name: Update Changelog
uses: stefanzweifel/changelog-updater-action@v1
Expand All @@ -26,6 +26,6 @@ jobs:
- name: Commit updated CHANGELOG
uses: stefanzweifel/git-auto-commit-action@v5
with:
branch: main
branch: master
commit_message: Update CHANGELOG
file_pattern: CHANGELOG.md

0 comments on commit 5a6fb24

Please sign in to comment.