Update the rest of the registry docs #5397
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: PR Test Label Manager | |
on: | |
pull_request_target: | |
branches: [ 'main' ] | |
types: [ opened, synchronize, reopened ] | |
jobs: | |
pr_test_label_manager: | |
name: PR Test Label Manager | |
runs-on: ubuntu-latest | |
if: | | |
github.event_name == 'pull_request_target' && | |
contains(fromJson('["opened", "synchronize", "reopened"]'), github.event.action) | |
steps: | |
- name: "Check Membership and Label PR" | |
uses: actions/github-script@v6 | |
id: check-membership | |
with: | |
github-token: ${{ secrets.PR_TOKEN }} | |
script: | | |
let prNumber = context.payload.pull_request && context.payload.pull_request.number; | |
let orgResp = await github.rest.orgs.checkMembershipForUser({org: "viamrobotics", username: context.payload.sender.login}); | |
if (orgResp.status === 204) { | |
await github.rest.issues.addLabels({owner: "viamrobotics", repo: "docs", issue_number: prNumber, labels: ["safe to build"]}); | |
} |