ci: 🎡 replace #pr with current pull request number in changelog #32
Workflow file for this run
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
name: PR Number Replace | |
on: | |
pull_request: | |
paths: | |
- 'CHANGELOG.md' | |
jobs: | |
replace-pr-number: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout code | |
uses: actions/checkout@v4 | |
with: | |
ref: ${{ github.event.pull_request.head.ref }} | |
- name: Replace pr number in CHANGELOG.md | |
if: ${{ github.event_name == 'merge_group' }} | |
run: | | |
sed -i "s/#pr/#${{ github.event.pull_request.number }}/g" ./CHANGELOG.md | |
if [ $(git status --porcelain | wc -l) -eq 0 ]; then | |
echo "No changes to commit." | |
exit 0 | |
fi | |
git config --global user.name "RChangelog[bot]" | |
git config --global user.email 155627257+RChangelog[bot]@users.noreply.github.com | |
git add . | |
git commit --amend --no-edit | |
git push -f |