Skip to content

Commit

Permalink
Fix wrong branch name
Browse files Browse the repository at this point in the history
  • Loading branch information
ggodlewski committed Jun 23, 2024
1 parent 076ba88 commit f782088
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/dev-pr-close.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ name: 'Dev - PR Close'
on:
pull_request:
branches:
- develop
- master
types:
- closed
jobs:
Expand Down Expand Up @@ -32,7 +32,7 @@ jobs:
if: contains(github.event.pull_request.labels.*.name, 'patch')
run: npm version patch
- name: Git push version bump
run: git push origin develop --follow-tags --force
run: git push origin master --follow-tags --force
- id: set-version
name: Output version change
run: npm pkg get version
2 changes: 1 addition & 1 deletion .github/workflows/dev-pr-label.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ name: 'Dev - PR Label Checker'
on:
pull_request:
branches:
- develop
- master
types:
- reopened
- labeled
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/dev-pr-open.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ name: 'Dev - PR Open'
on:
pull_request:
branches:
- develop
- master
types:
- opened
jobs:
Expand Down

0 comments on commit f782088

Please sign in to comment.