mermaid/.github/workflows/pr-labeler-config-validator.yml

31 lines
862 B
YAML
Raw Normal View History

2021-11-19 21:14:20 -08:00
name: Validate PR Labeler Configuration
on:
push:
paths:
- .github/workflows/pr-labeler-config-validator.yml
- .github/workflows/pr-labeler.yml
- .github/pr-labeler.yml
pull_request:
paths:
- .github/workflows/pr-labeler-config-validator.yml
- .github/workflows/pr-labeler.yml
- .github/pr-labeler.yml
2021-11-19 21:14:20 -08:00
jobs:
pr-labeler:
runs-on: ubuntu-latest
steps:
2021-11-20 15:48:50 -08:00
- name: Checkout Repository
uses: actions/checkout@v3
- uses: dorny/paths-filter@v2
id: filter
with:
filters: |
pr-labeller:
- '.github/pr-labeler.yml'
2021-11-19 21:14:20 -08:00
- name: Validate Configuration
if: steps.filter.outputs.pr-labeller == 'true'
2021-11-20 18:20:05 -08:00
uses: Yash-Singh1/pr-labeler-config-validator@releases/v0.0.3
2021-11-19 21:14:20 -08:00
with:
configuration-path: .github/pr-labeler.yml