forked from EnterpriseDB/tpa
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
.# GitHub token `edb-slonik` user token (`secrets.GH_SLONIK`) doesn't have enough rights to create/update PRs in the `tpa-internal` repo. This commit changes the workflow so it uses `secrets.GITHUBSECURITYTOKEN` instead of `secrets.GH_SLONIK` when creating/updating the PR. .# breaking changes type This commit adds the `breaking_change` relnote type. That type is currently not used, but might be helpful in the soon future. .# Add relnote YAML template We add a relnote template file at `release_notes/relnote.yml.template`. It should be an easy start when creating release notes files during development. As a consequence we changed the step `Clean up release notes YAML files` so it only removes `.yml` and `.yaml` files, so the template won't be removed by the workflow execution. Signed-off-by: Israel Barth Rubio <[email protected]> Co-authored-by: Jonathan Renon <[email protected]>
- Loading branch information
1 parent
3a195c2
commit 3211a0d
Showing
4 changed files
with
31 additions
and
12 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
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
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
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,17 @@ | ||
- summary: Some short description to be used as the first line | ||
description: | | ||
A longer description which will explain in details what the change is and | ||
why it has been introduced | ||
# Possible types: notable_change, minor_change, bugfix or breaking_change | ||
type: notable_change | ||
# At least one between jira_tickets or support_tickets must be defined. You | ||
# can define both if you want | ||
# You must have at least one list item in each *_tickets section that is | ||
# defined | ||
jira_tickets: | ||
- TPA-123 | ||
- TPA-456 | ||
- TPA-789 | ||
support_tickets: | ||
- RT12345 | ||
- RT67890 |