forked from polkadot-fellows/runtimes
-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'main' into mordamax-patch-1
- Loading branch information
Showing
1 changed file
with
19 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 |
---|---|---|
|
@@ -21,7 +21,8 @@ jobs: | |
|
||
- name: Load fellows | ||
id: load-fellows | ||
uses: paritytech/[email protected] | ||
#uses: paritytech/[email protected] | ||
run: echo "github-handles=[mordamax]" >> $GITHUB_OUTPUT | ||
|
||
reject-non-fellows: | ||
needs: fellows | ||
|
@@ -137,7 +138,13 @@ jobs: | |
issue_number: context.issue.number, | ||
owner: context.repo.owner, | ||
repo: context.repo.repo, | ||
body: `<details><summary>Command help:</summary>${{ steps.help.outputs.help }}</details>` | ||
body: `<details><summary>Command help:</summary> | ||
\`\`\` | ||
${{ steps.help.outputs.help }} | ||
\`\`\` | ||
</details>` | ||
}) | ||
- name: Add confused reaction on failure | ||
|
@@ -225,7 +232,7 @@ jobs: | |
- name: Checkout | ||
uses: actions/checkout@v4 | ||
with: | ||
ref: ${{ github.head_ref }} | ||
ref: ${{ github.event.issue.pull_request.head.ref }} | ||
|
||
- name: Set rust version via common env file | ||
run: cat .github/env >> $GITHUB_ENV | ||
|
@@ -268,11 +275,18 @@ jobs: | |
git config --local user.email "[email protected]" | ||
git config --local user.name "GitHub Action" | ||
git pull origin ${{ github.head_ref }} | ||
git pull origin ${{ github.event.issue.pull_request.head.ref }} | ||
git add . | ||
git restore --staged Cargo.lock # ignore changes in Cargo.lock | ||
git commit -m "Update from ${{ github.actor }} running command '${{ steps.get-pr-comment.outputs.group2 }}'" || true | ||
git push origin ${{ github.head_ref }} | ||
# Check if this is a fork | ||
if [ "${{ github.repository.owner.login }}" != "${{ github.event.repository.owner.login }}" ]; then | ||
echo "Running on a fork, pushing to forked repo"; | ||
git push https://${{ secrets.GITHUB_TOKEN }}@github.com/${{ github.event.repository.owner.login }}/${{ github.repository }}.git ${{ github.event.issue.pull_request.head.ref }} | ||
else | ||
echo "Running on the main repo, pushing to the original repo"; | ||
git push origin ${{ github.event.issue.pull_request.head.ref }} | ||
fi | ||
else | ||
echo "Nothing to commit"; | ||
fi | ||
|