fix: prettier 자동화와 이슈 번호 자동화가 동시에 적용되지 않는 에러를 개선한다 #39
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: assign_issue_number_to_pr_body | |
on: | |
pull_request: | |
types: [ opened ] | |
branches-ignore: | |
- main | |
jobs: | |
append_issue_number_to_pr_body: | |
runs-on: ubuntu-latest | |
steps: | |
- name: append feature number to pr body pr branch = feat/(issueNumber) | |
uses: actions/github-script@v4 | |
with: | |
github-token: ${{ secrets.GITHUB_TOKEN }} | |
script: | | |
const pr = await github.pulls.get({ | |
owner: context.repo.owner, | |
repo: context.repo.repo, | |
pull_number: context.issue.number | |
}); | |
const body = pr.data.body; | |
const issueNumber= pr.data.head.ref.split('/')[1]; | |
const newBody = body + "\n\n" + "close #" + issueNumber; | |
await github.pulls.update({ | |
owner: context.repo.owner, | |
repo: context.repo.repo, | |
pull_number: context.issue.number, | |
body: newBody | |
}); |