Zernit/.github/workflows/label-maker.yml
2020-02-10 16:06:51 +00:00

19 lines
523 B
YAML

name: ConaIsa
# Relevant to events - https://help.github.com/en/actions/automating-your-workflow-with-github-actions/events-that-trigger-workflows
on: push
jobs:
labeler:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v1
- name: Assigning labels
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 }}