Zernit/.github/workflows/label-maker.yml

19 lines
523 B
YAML
Raw Normal View History

2020-02-10 17:06:51 +01:00
name: ConaIsa
2020-02-05 13:15:02 +01:00
2020-02-10 17:06:51 +01:00
# Relevant to events - https://help.github.com/en/actions/automating-your-workflow-with-github-actions/events-that-trigger-workflows
on: push
2020-02-05 13:15:02 +01:00
jobs:
labeler:
runs-on: ubuntu-latest
steps:
2020-02-10 17:06:51 +01:00
- uses: actions/checkout@v1
- name: Assigning labels
2020-02-05 13:15:02 +01:00
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 }}