-
Notifications
You must be signed in to change notification settings - Fork 343
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #444 from perftools/0.19.x-merge-up-into-0.20.x_8S…
…BQ6Noa Merge release 0.19.1 into 0.20.x
- Loading branch information
Showing
7 changed files
with
322 additions
and
94 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 |
---|---|---|
@@ -1,5 +1,7 @@ | ||
# https://help.github.com/en/categories/automating-your-workflow-with-github-actions | ||
# https://docs.github.com/en/actions/reference/environment-variables | ||
# https://github.com/laminas/automatic-releases | ||
# https://github.com/perftools/xhgui/settings/secrets/actions | ||
|
||
name: "Automatic Releases" | ||
|
||
|
@@ -8,6 +10,11 @@ on: | |
types: | ||
- "closed" | ||
|
||
env: | ||
GIT_AUTHOR_NAME: "XHGui Release Bot" | ||
# NOTE: The e-mail does not exist | ||
GIT_AUTHOR_EMAIL: "[email protected]" | ||
|
||
jobs: | ||
release: | ||
name: "GIT tag, release & create merge-up PR" | ||
|
@@ -27,8 +34,8 @@ jobs: | |
env: | ||
"GITHUB_TOKEN": ${{ secrets.ORGANIZATION_ADMIN_TOKEN }} | ||
"SIGNING_SECRET_KEY": ${{ secrets.SIGNING_SECRET_KEY }} | ||
"GIT_AUTHOR_NAME": ${{ secrets.GIT_AUTHOR_NAME }} | ||
"GIT_AUTHOR_EMAIL": ${{ secrets.GIT_AUTHOR_EMAIL }} | ||
"GIT_AUTHOR_NAME": ${{ env.GIT_AUTHOR_NAME }} | ||
"GIT_AUTHOR_EMAIL": ${{ env.GIT_AUTHOR_EMAIL }} | ||
|
||
- name: "Create Merge-Up Pull Request" | ||
uses: "laminas/automatic-releases@v1" | ||
|
@@ -37,8 +44,8 @@ jobs: | |
env: | ||
"GITHUB_TOKEN": ${{ secrets.GITHUB_TOKEN }} | ||
"SIGNING_SECRET_KEY": ${{ secrets.SIGNING_SECRET_KEY }} | ||
"GIT_AUTHOR_NAME": ${{ secrets.GIT_AUTHOR_NAME }} | ||
"GIT_AUTHOR_EMAIL": ${{ secrets.GIT_AUTHOR_EMAIL }} | ||
"GIT_AUTHOR_NAME": ${{ env.GIT_AUTHOR_NAME }} | ||
"GIT_AUTHOR_EMAIL": ${{ env.GIT_AUTHOR_EMAIL }} | ||
|
||
- name: "Create and/or Switch to new Release Branch" | ||
uses: "laminas/automatic-releases@v1" | ||
|
@@ -47,8 +54,8 @@ jobs: | |
env: | ||
"GITHUB_TOKEN": ${{ secrets.ORGANIZATION_ADMIN_TOKEN }} | ||
"SIGNING_SECRET_KEY": ${{ secrets.SIGNING_SECRET_KEY }} | ||
"GIT_AUTHOR_NAME": ${{ secrets.GIT_AUTHOR_NAME }} | ||
"GIT_AUTHOR_EMAIL": ${{ secrets.GIT_AUTHOR_EMAIL }} | ||
"GIT_AUTHOR_NAME": ${{ env.GIT_AUTHOR_NAME }} | ||
"GIT_AUTHOR_EMAIL": ${{ env.GIT_AUTHOR_EMAIL }} | ||
|
||
- name: "Bump Changelog Version On Originating Release Branch" | ||
uses: "laminas/automatic-releases@v1" | ||
|
@@ -57,8 +64,8 @@ jobs: | |
env: | ||
"GITHUB_TOKEN": ${{ secrets.GITHUB_TOKEN }} | ||
"SIGNING_SECRET_KEY": ${{ secrets.SIGNING_SECRET_KEY }} | ||
"GIT_AUTHOR_NAME": ${{ secrets.GIT_AUTHOR_NAME }} | ||
"GIT_AUTHOR_EMAIL": ${{ secrets.GIT_AUTHOR_EMAIL }} | ||
"GIT_AUTHOR_NAME": ${{ env.GIT_AUTHOR_NAME }} | ||
"GIT_AUTHOR_EMAIL": ${{ env.GIT_AUTHOR_EMAIL }} | ||
|
||
- name: "Create new milestones" | ||
uses: "laminas/automatic-releases@v1" | ||
|
@@ -67,5 +74,7 @@ jobs: | |
env: | ||
"GITHUB_TOKEN": ${{ secrets.GITHUB_TOKEN }} | ||
"SIGNING_SECRET_KEY": ${{ secrets.SIGNING_SECRET_KEY }} | ||
"GIT_AUTHOR_NAME": ${{ secrets.GIT_AUTHOR_NAME }} | ||
"GIT_AUTHOR_EMAIL": ${{ secrets.GIT_AUTHOR_EMAIL }} | ||
"GIT_AUTHOR_NAME": ${{ env.GIT_AUTHOR_NAME }} | ||
"GIT_AUTHOR_EMAIL": ${{ env.GIT_AUTHOR_EMAIL }} | ||
|
||
# vim:ft=yaml:et:ts=2:sw=2 |
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
Oops, something went wrong.