Skip to content

setup github actions #1

setup github actions

setup github actions #1

Workflow file for this run

name: sync labels
on:
push:
branches:
- master
paths:
- ".github/labels.yml"
- ".github/workflows/sync_labels.yml"
jobs:
labeler:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: crazy-max/ghaction-github-labeler@v3
with:
yaml_file: ".github/labels.yml"
skip_delete: true
dry_run: false
env:
GITHUB_TOKEN: "${{ secrets.GITHUB_TOKEN }}"