🔧 Fix automation due to label changes

Signed-off-by: Luke Tainton <luke@tainton.uk>
This commit is contained in:
2020-08-17 10:43:34 +01:00
parent 2262078c89
commit 7dd1d8a2b9
6 changed files with 15 additions and 17 deletions

View File

@@ -2,7 +2,7 @@
name: Bug report
about: Create a report to help us improve
title: '🐛'
labels: type/bug
labels: type:bug
assignees:
---

View File

@@ -2,7 +2,7 @@
name: Document request
about: Request a change to documentation
title: '📚'
labels: type/docs
labels: type:docs
assignees:
---

View File

@@ -2,7 +2,7 @@
name: Feature request
about: Suggest an idea for this project
title: '✨'
labels: type/feature
labels: type:feature
assignees:
---

View File

@@ -2,14 +2,14 @@ mode: auto
silent: false
branchName: '${issue.number}'
branches:
- label: type/feature
prefix: feat/
- label: type/bug
prefix: bug/
- label: type/epic
prefix: epic/
- label: type/docs
prefix: docs/
- label: type/automation
prefix: auto/
- label: type:feature
prefix: feat-
- label: type:bug
prefix: bug-
- label: type:epic
prefix: epic-
- label: type:docs
prefix: docs-
- label: type:automation
prefix: auto-
autoCloseIssue: true

View File

@@ -3,8 +3,6 @@ name: Auto-create branches
on:
issues:
types: [assigned]
issue_comment:
types: [created]
jobs:
create_issue_branch_job:

View File

@@ -15,5 +15,5 @@ jobs:
repo-token: ${{ secrets.GITHUB_TOKEN }}
stale-issue-message: 'This issue has been marked as stale due to inactivity. If this issue is still ongoing, please leave a comment.'
stale-pr-message: 'This pull request has been marked as stale due to inactivity. If this issue is still ongoing, please leave a comment.'
stale-issue-label: 'status/stale'
stale-pr-label: 'status/stale'
stale-issue-label: 'status:stale'
stale-pr-label: 'status:stale'