-
-
Notifications
You must be signed in to change notification settings - Fork 25
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
fix: reset author and sign during backport
- Loading branch information
Showing
2 changed files
with
13 additions
and
0 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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -10,6 +10,18 @@ jobs: | |
runs-on: ubuntu-latest | ||
if: github.event.pull_request.merged | ||
steps: | ||
- name: Install SSH signing key | ||
run: | | ||
mkdir -p ${{ runner.temp }} | ||
echo "${{ secrets.SSH_SIGNING_KEY }}" > ${{ runner.temp }}/signing_key | ||
chmod 0700 ${{ runner.temp }}/signing_key | ||
- name: Setup Raboneko Signing | ||
run: | | ||
git config --global gpg.format "ssh" | ||
git config --global user.signingkey "${{ runner.temp }}/signing_key" | ||
git config --global commit.gpgsign true | ||
- name: Backport Action | ||
uses: sorenlouv/[email protected] | ||
with: | ||
|