ghaction-upx/.github/workflows/labels.yml

31 lines
604 B
YAML
Raw Normal View History

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
uses: actions/checkout@v4
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' }}