979bd1f8d4
Bumps [actions/checkout](https://github.com/actions/checkout) from v2 to v2.3.0. - [Release notes](https://github.com/actions/checkout/releases) - [Changelog](https://github.com/actions/checkout/blob/master/CHANGELOG.md) - [Commits](https://github.com/actions/checkout/compare/v2...b4483adec309c0d01a5435c5e24eb40de5773ad9) Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
24 lines
430 B
YAML
24 lines
430 B
YAML
name: labels
|
|
|
|
on:
|
|
push:
|
|
branches:
|
|
- 'dev'
|
|
paths:
|
|
- '.github/labels.yml'
|
|
- '.github/workflows/labels.yml'
|
|
|
|
jobs:
|
|
labeler:
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
-
|
|
name: Checkout
|
|
uses: actions/checkout@v2.3.0
|
|
-
|
|
name: Run Labeler
|
|
if: success()
|
|
uses: crazy-max/ghaction-github-labeler@v2
|
|
env:
|
|
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
|