Request Triage access for febo to the SPL repository #171
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: on-board | |
on: | |
issues: | |
types: | |
- labeled | |
jobs: | |
link_to_issue: | |
if: github.event.label.name == 'processing' | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/github-script@v6 | |
with: | |
script: | | |
github.rest.issues.createComment({ | |
issue_number: context.issue.number, | |
owner: context.repo.owner, | |
repo: context.repo.repo, | |
body: "https://github.com/${{ github.repository }}/actions/runs/${{ github.run_id }}" | |
}) | |
parse_info: | |
needs: link_to_issue | |
runs-on: ubuntu-latest | |
outputs: | |
github_handle: ${{ steps.main.outputs.github_handle }} | |
discord_handle: ${{ steps.main.outputs.discord_handle }} | |
team_slug: ${{ steps.main.outputs.team_slug }} | |
previous_team_slug: ${{ steps.main.outputs.previous_team_slug }} | |
privilege: ${{ steps.main.outputs.privilege }} | |
repository: ${{ steps.main.outputs.repository }} | |
steps: | |
- uses: actions/checkout@v3 | |
- id: main | |
shell: bash | |
run: | | |
set -e | |
source .github/scripts/parse-issue-title.sh "${{ github.event.issue.title }}" | |
source .github/scripts/parse-issue-body.sh "${{ github.event.issue.body }}" | |
source .github/scripts/get-team-slug.sh "$PRIVILEGE" "$REPOSITORY" | |
echo "github_handle=$GITHUB_HANDLE" >> $GITHUB_OUTPUT | |
echo "discord_handle=$DISCORD_HANDLE" >> $GITHUB_OUTPUT | |
echo "team_slug=$TEAM_SLUG" >> $GITHUB_OUTPUT | |
echo "previous_team_slug=$PREVIOUS_TEAM_SLUG" >> $GITHUB_OUTPUT | |
echo "privilege=$PRIVILEGE" >> $GITHUB_OUTPUT | |
echo "repository=$REPOSITORY" >> $GITHUB_OUTPUT | |
case $TEAM_SLUG in | |
*monorepo*) | |
maintainers=( | |
"mvines" | |
"CriesofCarrots" | |
"joeaba" | |
"t-nelson" | |
"sakridge" | |
"yihau" | |
) | |
if [[ ! " ${maintainers[*]} " =~ " ${{github.event.sender.login}} " ]]; then | |
echo "isn't a maintainer in monorepo" | |
exit 1 | |
fi | |
;; | |
*spl*) | |
maintainers=( | |
"mvines" | |
"CriesofCarrots" | |
"joeaba" | |
"t-nelson" | |
"sakridge" | |
"yihau" | |
"joncinque" | |
) | |
if [[ ! " ${maintainers[*]} " =~ " ${{github.event.sender.login}} " ]]; then | |
echo "isn't a maintainer in spl" | |
exit 1 | |
fi | |
;; | |
*) | |
echo "unexpected team slug: $TEAM_SLUG" | |
exit 1 | |
;; | |
esac | |
add_to_github_group: | |
needs: [parse_info] | |
uses: ./.github/workflows/add-to-github-group.yml | |
with: | |
team_slug: ${{ needs.parse_info.outputs.team_slug }} | |
previous_team_slug: ${{ needs.parse_info.outputs.previous_team_slug }} | |
github_handle: ${{ needs.parse_info.outputs.github_handle }} | |
secrets: | |
PAT: ${{ secrets.PAT }} | |
add_discord_role: | |
needs: [parse_info] | |
uses: ./.github/workflows/add-discord-role.yml | |
with: | |
team_slug: ${{ needs.parse_info.outputs.team_slug }} | |
discord_handle: ${{ needs.parse_info.outputs.discord_handle }} | |
secrets: | |
PAT: ${{ secrets.PAT }} | |
DISCORD_DEVBOT_TOKEN: ${{ secrets.DISCORD_DEVBOT_TOKEN }} | |
DISCORD_SOLANA_GUILD_ID: ${{ secrets.DISCORD_SOLANA_GUILD_ID }} | |
update_acl: | |
needs: [parse_info] | |
uses: ./.github/workflows/update-acl.yml | |
with: | |
github_handle: ${{ needs.parse_info.outputs.github_handle }} | |
discord_handle: ${{ needs.parse_info.outputs.discord_handle }} | |
repository: ${{ needs.parse_info.outputs.repository }} | |
privilege: ${{ needs.parse_info.outputs.privilege }} | |
secrets: | |
PAT: ${{ secrets.PAT }} | |
on_success: | |
needs: [add_to_github_group, add_discord_role, update_acl] | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/github-script@v6 | |
with: | |
github-token: ${{ secrets.PAT }} | |
script: | | |
github.rest.issues.addLabels({ | |
owner: context.repo.owner, | |
repo: context.repo.repo, | |
issue_number: context.issue.number, | |
labels: ["approved"] | |
}) | |
github.rest.issues.removeLabel({ | |
owner: context.repo.owner, | |
repo: context.repo.repo, | |
issue_number: context.issue.number, | |
name: "${{ github.event.label.name }}" | |
}) | |
github.rest.issues.update({ | |
owner: context.repo.owner, | |
repo: context.repo.repo, | |
issue_number: context.issue.number, | |
state: 'closed', | |
state_reasonstring: 'completed' | |
}) | |
on_failure: | |
needs: [add_to_github_group, add_discord_role, update_acl] | |
if: ${{ failure() }} | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/github-script@v6 | |
with: | |
script: | | |
github.rest.issues.removeLabel({ | |
owner: context.repo.owner, | |
repo: context.repo.repo, | |
issue_number: context.issue.number, | |
name: "${{ github.event.label.name }}" | |
}) |