Skip to content

Update actions/checkout action to v4.2.0 #1651

Update actions/checkout action to v4.2.0

Update actions/checkout action to v4.2.0 #1651

Workflow file for this run

name: PR
on:
pull_request_target:
types: [opened, labeled, unlabeled, synchronize]
jobs:
label:
name: Check Labels
if: github.base_ref != 'master' && github.head_ref != 'develop'
runs-on: ubuntu-latest
steps:
- name: Has semver label
uses: jesusvasquez333/[email protected]
with:
github-token: ${{ secrets.GITHUB_TOKEN }}
valid-labels: 'major, minor, patch'
pull-request-number: ${{ github.event.pull_request.number }}
disable-reviews: true
- name: Has change type label
uses: jesusvasquez333/[email protected]
with:
github-token: ${{ secrets.GITHUB_TOKEN }}
valid-labels: 'feature, enhancement, fix, bugfix, bug, chore'
pull-request-number: ${{ github.event.pull_request.number }}
disable-reviews: true