-
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.
chore(ci): using context instead of variable while building jobs
- Loading branch information
Showing
2 changed files
with
5 additions
and
5 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,5 @@ | ||
# Should trim prefix `refs/tags/` from tag name | ||
name-template: ${{ github.ref_name }} 🌈 | ||
name-template: ${GITHUB_REF_NAME} 🌈 | ||
template: | | ||
## Changes | ||
$CHANGES |
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 |
---|---|---|
|
@@ -53,15 +53,15 @@ jobs: | |
- uses: peter-evans/create-pull-request@v3 | ||
with: | ||
token: ${{ secrets.PAT_CREATE_PR }} | ||
commit-message: "feat update homebrew-h3n4l to release ${GITHUB_REF_NAME}" | ||
title: "feat: update homebrew-h3n4l to ${GITHUB_REF_NAME}" | ||
commit-message: "feat update h3n4l/homebrew-chatsh to release ${{ github.REF_NAME }}" | ||
title: "feat: update h3n4l/homebrew-chatsh to ${{ github.REF_NAME }}" | ||
committer: h3n4l <[email protected]> | ||
author: h3n4l <[email protected]> | ||
branch: feat/release-${GITHUB_REF_NAME} | ||
branch: feat/release-${{ github.REF_NAME }} | ||
delete-branch: true | ||
draft: false | ||
body: | | ||
Update homebrew-h3n4l to release ${GITHUB_REF_NAME} | ||
Update homebrew-h3n4l to release ${{ github.REF_NAME }} | ||
- Auto-generated by [create-pull-request][1] | ||
[1]: https://github.com/peter-evans/create-pull-request |