forked from ethereum/go-ethereum
-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat: signed commit when renaming upstream module
- Loading branch information
Showing
3 changed files
with
16 additions
and
15 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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -6,8 +6,8 @@ on: | |
# However, they MUST be disabled again before merging otherwise *all* PRs will | ||
# run this. | ||
# | ||
# pull_request: | ||
# branches: [ main ] | ||
pull_request: # DO NOT MERGE | ||
branches: [ main ] | ||
workflow_dispatch: | ||
inputs: | ||
source_commit: | ||
|
@@ -61,12 +61,13 @@ jobs: | |
go test ./accounts/abi/bind ./rlp/rlpgen | ||
- name: Commit to new branch | ||
uses: devops-infra/action-commit-push@8bc2ff9f9de7aa2a7581fc7e5b6401c04cab54c7 | ||
uses: planetscale/[email protected] | ||
env: | ||
GITHUB_TOKEN: ${{secrets.GITHUB_TOKEN}} | ||
with: | ||
github_token: ${{ secrets.GITHUB_TOKEN }} | ||
target_branch: ${{ env.output_branch }} | ||
force: true | ||
commit_prefix: "[AUTO] rename Go module + update internal import paths" | ||
commit_message: "[AUTO] rename Go module + update internal import paths" | ||
repo: ${{ github.repository }} | ||
branch: ${{ env.output_branch }} | ||
|
||
- name: Open PR to "renamed-go-module" iff workflow dispatched on "main" | ||
# If we are changing the way in which we manage module renaming then it | ||
|