Skip to content

Commit a990f2d

Browse files
committed
Allow rc tags to trigger releases (#2)
* chore: add support for X.X.XrcX tags * chore: update PR template terminology
1 parent 70d3775 commit a990f2d

File tree

4 files changed

+5
-2
lines changed

4 files changed

+5
-2
lines changed

.github/PULL_REQUEST_TEMPLATE.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11,5 +11,5 @@ Before creating a PR, run through this checklist and mark each as complete.
1111
- [ ] I have added tests (when possible) that prove my fix is effective or that my feature works
1212
- [ ] I have checked that all unit tests pass after adding my changes
1313
- [ ] I have updated necessary documentation
14-
- [ ] I have rebased my branch onto master
15-
- [ ] I will ensure my PR is targeting the master branch and pulling from my branch from my own fork
14+
- [ ] I have rebased my branch onto main
15+
- [ ] I will ensure my PR is targeting the main branch and pulling from my branch from my own fork

.github/workflows/ci.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,7 @@ on:
77
- main
88
tags:
99
- "[0-9]+.[0-9]+.[0-9]+"
10+
- "[0-9]+.[0-9]+.[0-9]+rc[0-9]+"
1011
workflow_dispatch:
1112
inputs:
1213
force_publish_pypi:

.github/workflows/linters.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,7 @@ on:
77
- main
88
tags:
99
- "[0-9]+.[0-9]+.[0-9]+"
10+
- "[0-9]+.[0-9]+.[0-9]+rc[0-9]+"
1011

1112
jobs:
1213
build:

.github/workflows/scanners.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,7 @@ on:
77
- main
88
tags:
99
- "[0-9]+.[0-9]+.[0-9]+"
10+
- "[0-9]+.[0-9]+.[0-9]+rc[0-9]+"
1011

1112
jobs:
1213
fossa:

0 commit comments

Comments
 (0)