Imperial development Release 0.5.0 #55
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: flag_external_pr | |
on: # yamllint disable-line rule:truthy | |
pull_request_target: | |
types: [opened] # only run on new PRs | |
# https://docs.github.com/en/actions/using-workflows/events-that-trigger-workflows#issue_comment | |
# https://docs.github.com/en/developers/webhooks-and-events/webhooks/webhook-events-and-payloads#issue_comment | |
jobs: | |
check_author: | |
name: Check PR author | |
runs-on: ubuntu-latest | |
steps: | |
# Ensure we have the script file for the github-script action to use | |
- name: Checkout | |
uses: actions/checkout@v3 | |
with: | |
persist-credentials: false | |
- id: check_command | |
name: Check for a command using GitHub script | |
uses: actions/github-script@v6 | |
with: | |
result-encoding: string | |
script: | | |
const script = require('./.github/scripts/build.js') | |
await script.labelAsExternalIfAuthorDoesNotHaveWriteAccess({core, context, github}); |