-
-
Notifications
You must be signed in to change notification settings - Fork 146
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
ci, doc: add semver workflow and PR template (#875)
* ci: add release workflow * doc: add PR template
- Loading branch information
Showing
3 changed files
with
59 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,34 @@ | ||
## Summary | ||
|
||
<!-- Give a brief description of what your PR does. --> | ||
|
||
This PR adds.. | ||
|
||
## Related Issues | ||
|
||
<!-- Link issues that are related to this PR. You may link issues you think should be closed by this PR. --> | ||
|
||
Related # | ||
|
||
Closes # | ||
|
||
## Changes | ||
|
||
<!-- List the major changes made in this PR. --> | ||
|
||
- List changes here | ||
|
||
## Checklist | ||
|
||
I confirm that I have: | ||
|
||
- [ ] **Followed the | ||
[Conventional Commits](https://www.conventionalcommits.org/) | ||
specification** (e.g., `feat: add new feature`, `fix: correct bug`, | ||
`docs: update documentation`). | ||
- [ ] **My PR title also follows the conventional commits specification.** | ||
- [ ] **Updated relevant documentation,** if necessary. | ||
- [ ] **Thoroughly tested my changes.** | ||
- [ ] **Added tests** (if applicable) and verified existing tests pass with | ||
`make test`. | ||
- [ ] **Checked for breaking changes** and documented them, if any. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,19 @@ | ||
on: | ||
push: | ||
branches: | ||
- master | ||
|
||
permissions: | ||
contents: write | ||
pull-requests: write | ||
|
||
name: release-please | ||
|
||
jobs: | ||
release-please: | ||
runs-on: ubuntu-latest | ||
steps: | ||
- uses: googleapis/release-please-action@v4 | ||
with: | ||
token: ${{ secrets.GH_TOKEN }} | ||
release-type: simple |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters