We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents a57df09 + 5505305 commit 56ac69eCopy full SHA for 56ac69e
.github/workflows/on_merge.yml
@@ -39,6 +39,11 @@ jobs:
39
token: ${{ secrets.GITHUB_TOKEN }}
40
commit-message: "chore: update AUTHORS.md"
41
title: "chore: update AUTHORS.md"
42
- body: "This PR updates the AUTHORS.md file. Related to PR #${{ github.event.pull_request.number }}"
43
branch: feat/update-authors-md
44
base: main
+
45
+ - name: Update PR description
46
+ if: env.CHANGED == 'true'
47
+ run: |
48
+ pr_number=$(gh pr view --json number --jq '.number')
49
+ gh pr edit $pr_number --body "This PR is related to #$pr_number"
0 commit comments