mirror of
https://github.com/crazy-max/ghaction-import-gpg.git
synced 2024-11-06 05:35:51 -05:00
25 lines
538 B
YAML
25 lines
538 B
YAML
name: labels
|
|
|
|
on:
|
|
push:
|
|
branches:
|
|
- 'master'
|
|
paths:
|
|
- '.github/labels.yml'
|
|
- '.github/workflows/labels.yml'
|
|
|
|
jobs:
|
|
labeler:
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
-
|
|
# https://github.com/actions/checkout
|
|
name: Checkout
|
|
uses: actions/checkout@v2
|
|
-
|
|
# https://github.com/crazy-max/ghaction-github-labeler
|
|
name: Run Labeler
|
|
if: success()
|
|
uses: crazy-max/ghaction-github-labeler@v2
|
|
env:
|
|
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
|