mirror of
https://github.com/docker/login-action.git
synced 2024-11-06 08:55:56 -05:00
23 lines
438 B
YAML
23 lines
438 B
YAML
name: labels
|
|
|
|
on:
|
|
push:
|
|
branches:
|
|
- 'master'
|
|
paths:
|
|
- '.github/labels.yml'
|
|
- '.github/workflows/labels.yml'
|
|
|
|
jobs:
|
|
labeler:
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
-
|
|
name: Checkout
|
|
uses: actions/checkout@v2.3.2
|
|
-
|
|
name: Run Labeler
|
|
if: success()
|
|
uses: crazy-max/ghaction-github-labeler@v3.0.0
|
|
with:
|
|
github-token: ${{ secrets.GITHUB_TOKEN }}
|