Maintainers approval #8917
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: Maintainers approval | |
on: | |
pull_request_review: | |
jobs: | |
maintainer-approved-check: | |
name: Minimum approval count | |
runs-on: ubuntu-latest | |
steps: | |
- id: find-maintainers | |
uses: actions/[email protected] | |
with: | |
github-token: ${{ secrets.GITHUB_TOKEN }} | |
result-encoding: string | |
script: | | |
// Get the collaborators - filtered to maintainer permissions | |
const maintainersResponse = await github.request('GET /repos/{owner}/{repo}/collaborators', { | |
owner: context.repo.owner, | |
repo: context.repo.repo, | |
permission: 'maintain', | |
affiliation: 'all', | |
per_page: 100 | |
}); | |
return maintainersResponse.data.map(item => item.login).join(', '); | |
- uses: peternied/[email protected] | |
with: | |
token: ${{ secrets.GITHUB_TOKEN }} | |
min-required: 1 | |
required-approvers-list: ${{ steps.find-maintainers.outputs.result }} |