2020-01-08 14:29:38 -07:00
|
|
|
name: labels
|
|
|
|
|
2023-05-03 09:50:31 -06:00
|
|
|
concurrency:
|
|
|
|
group: ${{ github.workflow }}-${{ github.ref }}
|
|
|
|
cancel-in-progress: true
|
|
|
|
|
2020-01-08 14:29:38 -07:00
|
|
|
on:
|
|
|
|
push:
|
|
|
|
branches:
|
|
|
|
- 'master'
|
|
|
|
paths:
|
|
|
|
- '.github/labels.yml'
|
|
|
|
- '.github/workflows/labels.yml'
|
2023-09-03 09:55:52 -06:00
|
|
|
pull_request:
|
|
|
|
paths:
|
|
|
|
- '.github/labels.yml'
|
|
|
|
- '.github/workflows/labels.yml'
|
2020-01-08 14:29:38 -07:00
|
|
|
|
|
|
|
jobs:
|
|
|
|
labeler:
|
|
|
|
runs-on: ubuntu-latest
|
|
|
|
steps:
|
|
|
|
-
|
|
|
|
name: Checkout
|
2022-03-01 23:27:14 -07:00
|
|
|
uses: actions/checkout@v3
|
2020-01-08 14:29:38 -07:00
|
|
|
-
|
|
|
|
name: Run Labeler
|
2022-05-26 15:33:59 -06:00
|
|
|
uses: crazy-max/ghaction-github-labeler@v4
|
2023-09-03 09:55:52 -06:00
|
|
|
with:
|
|
|
|
dry-run: ${{ github.event_name == 'pull_request' }}
|