feat: added framework for remote chan tests and TC for token transfer … #557
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 Label Checker | |
on: | |
pull_request: | |
types: | |
- opened | |
- synchronize | |
- reopened | |
- labeled | |
- unlabeled | |
workflow_run: | |
workflows: | |
- auto-label | |
types: | |
- completed | |
jobs: | |
check_labels: | |
name: Check PR labels | |
runs-on: ubuntu-latest | |
steps: | |
- uses: docker://agilepathway/pull-request-label-checker:latest | |
with: | |
any_of: documentation,enhancement,bug,cicd,test,breaking-change,feature,scripts,dependencies | |
repo_token: ${{ secrets.GITHUB_TOKEN }} |