-
Notifications
You must be signed in to change notification settings - Fork 3
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 #293 from thefrontside/cl/sign-pr-commits-deaux
👷 Pass commiter information to the create pull request action
- Loading branch information
Showing
1 changed file
with
1 addition
and
7 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 |
---|---|---|
|
@@ -33,19 +33,13 @@ jobs: | |
command: "version-or-publish" | ||
recognizeContributors: true | ||
|
||
# recommit with the signature setup in the beginning of this action | ||
- name: Sign Commits | ||
if: steps.covector.outputs.commandRan == 'version' | ||
run: | | ||
git commit --amend --no-edit --reset-author | ||
git push --force-with-lease origin release | ||
- name: Create Pull Request With Versions Bumped | ||
uses: peter-evans/create-pull-request@v6 | ||
if: steps.covector.outputs.commandRan == 'version' | ||
with: | ||
token: ${{ secrets.FRONTSIDEJACK_GITHUB_TOKEN }} | ||
title: "Publish New Versions" | ||
committer: Jack <[email protected]> | ||
commit-message: "publish new versions" | ||
labels: "version updates" | ||
branch: "release" | ||
|