23 lines
460 B
YAML
23 lines
460 B
YAML
name: label-maker
|
|
|
|
on:
|
|
schedule:
|
|
- cron: "*/30 * * * *"
|
|
|
|
jobs:
|
|
labeler:
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
-
|
|
name: Checkout
|
|
uses: actions/checkout@v1
|
|
-
|
|
name: Run Labeler
|
|
if: success()
|
|
uses: crazy-max/ghaction-github-labeler@v1
|
|
with:
|
|
yaml_file: .github/labels.yml
|
|
skip_delete: false
|
|
dry_run: false
|
|
env:
|
|
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} |