fix: update external-contributor triaging workflow #5
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: Add any new Pull Request to OSS Triaging project | |
on: | |
pull_request_target: | |
types: [opened, reopened] | |
env: | |
EXTERNAL_PR_LABEL: external-contributor | |
jobs: | |
check-pr-if-external: | |
name: Add external label to pull request if outside StackRox | |
runs-on: ubuntu-latest | |
env: | |
GH_TOKEN: ${{ github.token }} | |
BASE_REPO: ${{ github.repository }} | |
HEAD_REPO: ${{ github.event.pull_request.head.user.login }}/${{ github.event.pull_request.head.repo.name }} | |
outputs: | |
is_external_pr: ${{ steps.check-external-pr.outputs.is_external_pr }} | |
steps: | |
- name: Check out code | |
uses: actions/checkout@v3 | |
- id: check-external-pr | |
run: | | |
set -uo pipefail | |
if [[ $BASE_REPO != $HEAD_REPO ]]; then | |
gh pr edit \ | |
${{ github.event.pull_request.number }} \ | |
--add-label ${EXTERNAL_PR_LABEL} | |
fi |