mirror of
https://github.com/KokaKiwi/BarInsta
synced 2024-11-08 07:57:28 +00:00
Create label-bugs.yml
This commit is contained in:
parent
39e5302535
commit
8703e0b9b8
18
.github/workflows/label-bugs.yml
vendored
Normal file
18
.github/workflows/label-bugs.yml
vendored
Normal file
@ -0,0 +1,18 @@
|
|||||||
|
name: Label bugs
|
||||||
|
|
||||||
|
on:
|
||||||
|
issues:
|
||||||
|
types: [opened]
|
||||||
|
|
||||||
|
jobs:
|
||||||
|
add-labels:
|
||||||
|
runs-on: ubuntu-latest
|
||||||
|
if: contains(github.event.issue.body, 'New Trace collected:') == true
|
||||||
|
steps:
|
||||||
|
- name: Add labels
|
||||||
|
uses: actions-cool/issues-helper@v2.2.1
|
||||||
|
with:
|
||||||
|
actions: 'add-labels'
|
||||||
|
token: ${{ secrets.GITHUB_TOKEN }}
|
||||||
|
issue-number: ${{ github.event.issue.number }}
|
||||||
|
labels: 'bug'
|
Loading…
Reference in New Issue
Block a user