fix: 공공 데이터에서 받아온 시간과 조회하는 시간이 다른 문제를 해결한다 #252
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 | |
}); |