Bump actions/checkout from 3 to 4 #40
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
# Workflow that ensures our PRs have an appropriate label applied to them. | |
# These labels help us determine if each release is a major (breaking), | |
# minor (new feature added), or patch (bug- or security-fix) release. | |
name: "PR labels" | |
on: | |
pull_request: | |
types: | |
- "opened" | |
- "reopened" | |
- "labeled" | |
- "unlabeled" | |
- "synchronize" | |
jobs: | |
classify: | |
name: "Classify PR" | |
runs-on: ubuntu-latest | |
steps: | |
- name: "PR impact specified" | |
uses: mheap/github-action-required-labels@v5 | |
with: | |
mode: exactly | |
count: 1 | |
labels: "impact-breaking, impact-feature, impact-bug, impact-project" |