Skip to content

Commit

Permalink
Merge pull request #777 from oasisprotocol/mz/renovate-checks
Browse files Browse the repository at this point in the history
Re-rerun PR checks after appending Change Log fragment
  • Loading branch information
buberdds authored Jul 31, 2023
2 parents 87aa6fc + 481b8cb commit 94c7243
Show file tree
Hide file tree
Showing 2 changed files with 14 additions and 12 deletions.
1 change: 1 addition & 0 deletions .changelog/777.internal.md
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
Re-run PR checks after appending Change Log fragment
25 changes: 13 additions & 12 deletions .github/workflows/ci-renovate.yml
Original file line number Diff line number Diff line change
Expand Up @@ -27,21 +27,22 @@ jobs:
fetch-depth: 0
# Checkout pull request HEAD commit instead of merge commit.
ref: ${{ github.event.pull_request.head.sha }}
# Needed to enable checks re-run.
token: ${{ secrets.PAT || secrets.GITHUB_TOKEN }}
- name: Set workflow variables
# Id is needed to access output in a next step.
id: vars
run: |
echo "FILE_NAME=.changelog/${{ github.event.pull_request.number }}.internal.md" >> $GITHUB_OUTPUT
- name: Create Change Log file
- name: Create and commit Change Log fragment if it does not exist
run: |
echo "${{ github.event.pull_request.title }}" > ${{ steps.vars.outputs.FILE_NAME }}
- name: Commit Change Log file
run: |
# Set git user email and name to match author of the last commit.
git config --local user.email "$(git log --pretty='%ae' -1)"
git config --local user.name "$(git log --pretty=format:'%an' -1)"
git add ${{ steps.vars.outputs.FILE_NAME }}
git commit --amend --no-edit
- name: Push changes back to branch
run: |
git push --force-with-lease origin HEAD:refs/heads/${{ github.head_ref }}
if [[ ! -f "${{ steps.vars.outputs.FILE_NAME }}" ]]; then
echo "${{ github.event.pull_request.title }}" > ${{ steps.vars.outputs.FILE_NAME }}
# Set git user email and name to match author of the last commit.
git config --local user.email "$(git log --pretty='%ae' -1)"
git config --local user.name "$(git log --pretty=format:'%an' -1)"
git add ${{ steps.vars.outputs.FILE_NAME }}
git commit --amend --no-edit
git push --force-with-lease origin HEAD:refs/heads/${{ github.head_ref }}
echo "FILE_EXISTS=false" >> $GITHUB_OUTPUT
fi

0 comments on commit 94c7243

Please sign in to comment.