Check PR Labels on Push
ActionsThis action check if given ALL labels have be applied to the PR when pushed
v1.0.12
LatestBy shioyang
This action check if given ALL labels have be applied to the PR when pushed.
Required The repository token, i.e. secrets.GITHUB_TOKEN
Required The array of label name, e.g. '["label-1", "label-2"]'
The result if given ALL labels have be applied to the PR
uses: shioyang/check-pr-labels-on-push-action@v1.0.10
with:
github-token: ${{ secrets.GITHUB_TOKEN }}
labels: '["label-1", "label-2"]'
e.g. .github/workflows/main.yml
on:
push:
branches:
- master
jobs:
check_pr_labels_job:
runs-on: ubuntu-latest
name: A job to check the PR labels contain given labels
steps:
- name: Check PR labels action step
id: check_pr_labels
uses: shioyang/check-pr-labels-on-push-action@v1.0.12
with:
github-token: ${{ secrets.GITHUB_TOKEN }}
labels: '["enhancement"]'
timeout-minutes: 5
- name: See result
run: echo "${{ steps.check_pr_labels.outputs.result }}"
Check PR Labels on Push is not certified by GitHub. It is provided by a third-party and is governed by separate terms of service, privacy policy, and support documentation.