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
|
2020-02-12 23:11:30 +01:00
|
|
|
on:
|
|
|
|
pull_request:
|
|
|
|
types: [synchronize, opened, reopened, ready_for_review]
|
|
|
|
paths:
|
2020-02-12 23:17:49 +01:00
|
|
|
- '*.labels\.yml$'
|
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 }}
|