mirror of
https://github.com/neovim/neovim.git
synced 2026-05-24 22:00:10 +00:00
ci: bump actions/github-script Bumps the github-actions group with 1 update in the / directory: [actions/github-script](https://github.com/actions/github-script). Updates `actions/github-script` from 8 to 9 - [Release notes](https://github.com/actions/github-script/releases) - [Commits](https://github.com/actions/github-script/compare/v8...v9) --- updated-dependencies: - dependency-name: actions/github-script dependency-version: '9' dependency-type: direct:production update-type: version-update:semver-major dependency-group: github-actions ... Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
24 lines
531 B
YAML
24 lines
531 B
YAML
name: "reviewers: remove"
|
|
on:
|
|
pull_request_target:
|
|
types: [converted_to_draft, closed]
|
|
|
|
permissions: {}
|
|
|
|
jobs:
|
|
remove-reviewers:
|
|
runs-on: ubuntu-latest
|
|
permissions:
|
|
pull-requests: write
|
|
steps:
|
|
- uses: actions/checkout@v6
|
|
with:
|
|
persist-credentials: false
|
|
|
|
- name: 'Remove reviewers'
|
|
uses: actions/github-script@v9
|
|
with:
|
|
script: |
|
|
const script = require('./.github/scripts/reviewers_remove.js')
|
|
await script({github, context})
|