mirror of
https://github.com/crazy-max/ghaction-upx.git
synced 2024-11-22 10:26:08 -07:00
31 lines
604 B
YAML
31 lines
604 B
YAML
name: labels
|
|
|
|
concurrency:
|
|
group: ${{ github.workflow }}-${{ github.ref }}
|
|
cancel-in-progress: true
|
|
|
|
on:
|
|
push:
|
|
branches:
|
|
- 'master'
|
|
paths:
|
|
- '.github/labels.yml'
|
|
- '.github/workflows/labels.yml'
|
|
pull_request:
|
|
paths:
|
|
- '.github/labels.yml'
|
|
- '.github/workflows/labels.yml'
|
|
|
|
jobs:
|
|
labeler:
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
-
|
|
name: Checkout
|
|
uses: actions/checkout@v3
|
|
-
|
|
name: Run Labeler
|
|
uses: crazy-max/ghaction-github-labeler@v4
|
|
with:
|
|
dry-run: ${{ github.event_name == 'pull_request' }}
|