Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 0 additions & 7 deletions .github/workflows/pr-file-check.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,13 +15,6 @@ jobs:
name: 'Check for changed files'
runs-on: ubuntu-latest
steps:
- name: 'News entry'
uses: brettcannon/check-for-changed-files@v1.1.0
with:
file-pattern: 'news/*/*.md'
skip-label: 'skip news'
failure-message: 'News entry file missing; see news/README.md for instructions (the ${skip-label} label can be used to pass this check)'

- name: 'package-lock.json matches package.json'
uses: brettcannon/check-for-changed-files@v1.1.0
with:
Expand Down
21 changes: 21 additions & 0 deletions .github/workflows/pr-labels.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
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@v1
with:
mode: exactly
count: 1
labels: 'bug, debt, feature-request, skip news'