Skip to content

Commit 6960fb0

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

File tree

4 files changed

+5
-5
lines changed

4 files changed

+5
-5
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 & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ on:
66
branches:
77
- main
88
tags:
9-
- "[0-9]+.[0-9]+.[0-9]+"
9+
- "[0-9]+.[0-9]+.[0-9]+(rc[0-9]+)?"
1010
workflow_dispatch:
1111
inputs:
1212
force_publish_pypi:

.github/workflows/linters.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ on:
66
branches:
77
- main
88
tags:
9-
- "[0-9]+.[0-9]+.[0-9]+"
9+
- "[0-9]+.[0-9]+.[0-9]+(rc[0-9]+)?"
1010

1111
jobs:
1212
build:

.github/workflows/scanners.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ on:
66
branches:
77
- main
88
tags:
9-
- "[0-9]+.[0-9]+.[0-9]+"
9+
- "[0-9]+.[0-9]+.[0-9]+(rc[0-9]+)?"
1010

1111
jobs:
1212
fossa:

0 commit comments

Comments
 (0)