build(deps): bump ros-industrial/industrial_ci from d23b9ad2c63bfad638a2b1fe3df34b8df9a2f17b to 8d0620b3c43fc3bb2599b6ede6e0a261a2eced02 #128
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: Verify Pull Request Labels | |
on: | |
pull_request_target: | |
types: [opened, reopened, labeled, unlabeled] | |
jobs: | |
verify_pr_labels: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v4 | |
- name: Verify Pull Request Labels | |
uses: actions/github-script@v7 | |
with: | |
github-token: ${{ secrets.GITHUB_TOKEN }} | |
script: | | |
const script = require('./.github/workflows/scripts/check_label.js'); | |
await script({github, context, core}) |