Browse Source
Improve PR template and format JavaScript code
pull/10137/head
nkjh104
3 weeks ago
committed by
GitHub
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
2 changed files with
7 additions and
3 deletions
-
.github/PULL_REQUEST_TEMPLATE.md
-
.github/workflows/scripts/close_and_reopen_pr.js
|
|
@ -2,13 +2,17 @@ |
|
|
|
|
|
|
|
<!-- What is this pull request for? Does it fix any issues? --> |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
## Checklist |
|
|
|
|
|
|
|
<!-- Put an x inside [ ] to check it, like so: [x] --> |
|
|
|
|
|
|
|
- [ ] If code changes were made then they have been tested. |
|
|
|
- [ ] I have updated the documentation to reflect the changes. |
|
|
|
- [ ] I have added tests that prove my fix is effective or that my feature works. |
|
|
|
- [ ] This PR fixes an issue. |
|
|
|
- [ ] This PR adds something new (e.g. new method or parameters). |
|
|
|
- [ ] This PR is a breaking change (e.g. methods or parameters removed/renamed) |
|
|
|
- [ ] This PR is **not** a code change (e.g. documentation, README, ...) |
|
|
|
- [ ] I have ensured that my code follows the style guidelines of this project. |
|
|
|
|
|
@ -1,4 +1,4 @@ |
|
|
|
module.exports = (async function ({github, context}) { |
|
|
|
module.exports = (async function ({ github, context }) { |
|
|
|
const pr_number = process.env.PR_NUMBER; |
|
|
|
const pr_operation = process.env.PR_OPERATION; |
|
|
|
|
|
|
@ -12,8 +12,8 @@ module.exports = (async function ({github, context}) { |
|
|
|
await new Promise(r => setTimeout(r, 5000)); |
|
|
|
|
|
|
|
// Close the PR
|
|
|
|
github.issues.update({ |
|
|
|
issue_number: pr_number, |
|
|
|
await github.pulls.update({ |
|
|
|
pull_number: pr_number, |
|
|
|
owner: context.repo.owner, |
|
|
|
repo: context.repo.repo, |
|
|
|
state |
|
|
|