Skip to content

Commit 032f065

Browse files
committed
fix: release workflow now targets correct branch
1 parent 85a7001 commit 032f065

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

.github/pull_request_template.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -17,9 +17,9 @@ examples: "feat: add new command" or "fix: remove unused imports"
1717

1818
- [ ] You have read [CONTRIBUTING](https://github.com/ericsizemore/phpunit-coverage-check/blob/master/CONTRIBUTING.md)
1919
- [ ] If documentation is needed for this change, has that been included in this pull request
20-
- [ ] run `composer run-script test` and ensure you have test coverage for the lines you are introducing
20+
- [ ] run `composer run-script phpunit` and ensure you have test coverage for the lines you are introducing
2121
- [ ] run `composer run-script phpstan` and fix any issues that you have introduced
22-
- [ ] run `composer run-script cs:check` and fix any issues that you have introduced
22+
- [ ] run `composer run-script phpcs:check` and fix any issues that you have introduced
2323

2424
### Reviewer
2525

.github/workflows/release.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ name: Release
44
on:
55
workflow_dispatch:
66
push:
7-
branches: [ main ]
7+
branches: [ master ]
88
pull_request: ~
99
schedule:
1010
- cron: "15 9 */3 * *"

0 commit comments

Comments
 (0)