删除第三方图片 #34
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-pr-to-creator | |
on: | |
pull_request_target: | |
types: [opened] | |
permissions: | |
pull-requests: write | |
contents: read | |
issues: read | |
checks: read | |
actions: read | |
jobs: | |
assign-pr: | |
runs-on: ubuntu-latest | |
steps: | |
- name: 自动分配审查和受理至人民的勤务员 | |
uses: actions/github-script@v7 | |
with: | |
#github-token: ${{ secrets.BO_TOKEN }} | |
script: | | |
const prOwner = context.repo.owner; | |
const pullRequest = context.payload.pull_request; | |
const pull_number = pullRequest.number; | |
const prAuthor = pullRequest.user.login; | |
// 添加受理人 | |
await github.rest.issues.addAssignees({ | |
owner: context.repo.owner, | |
repo: context.repo.repo, | |
issue_number: pull_number, | |
assignees: [prOwner] | |
}); | |
// 请求审阅 | |
if (prOwner !== prAuthor) { | |
await github.rest.pulls.requestReviewers({ | |
owner: context.repo.owner, | |
repo: context.repo.repo, | |
pull_number: pull_number, | |
reviewers: [prOwner] | |
}); | |
} else { | |
console.log(`跳过请求审阅,因为 PR 的作者是 ${prAuthor},也是仓库拥有者,无需审查!`); | |
} | |
await github.rest.issues.createComment({ | |
owner: context.repo.owner, | |
repo: context.repo.repo, | |
issue_number: pull_number, | |
body: `@${prAuthor} 你好,人民的勤务员将尽快审查合并此次请求!🚀 [自动回复,请勿跟帖] ` | |
}); |