Update ci.yml #26
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 | |
on: | |
pull_request_target: | |
branches: [main] | |
types: [opened] | |
permissions: | |
contents: read | |
jobs: | |
close: | |
permissions: | |
contents: read | |
# We have to use two different APIs below, | |
# so just grant two different permissions. | |
issues: write | |
pull-requests: write | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4.1.6 | |
- uses: actions/github-script@v7.0.1 | |
with: | |
script: | | |
const fs = require('fs'); | |
console.log(await github.rest.issues.createComment({ | |
owner: context.repo.owner, | |
repo: context.repo.repo, | |
issue_number: context.issue.number, | |
body: fs.readFileSync('CONTRIBUTING.md', { encoding: 'utf8', }), | |
})); | |
console.log(await github.rest.pulls.update({ | |
owner: context.repo.owner, | |
repo: context.repo.repo, | |
pull_number: context.issue.number, | |
state: 'closed', | |
})); |