🔧 Fix automation due to label changes
Signed-off-by: Luke Tainton <luke@tainton.uk>
This commit is contained in:
2
.github/ISSUE_TEMPLATE/bug_report.md
vendored
2
.github/ISSUE_TEMPLATE/bug_report.md
vendored
@@ -2,7 +2,7 @@
|
|||||||
name: Bug report
|
name: Bug report
|
||||||
about: Create a report to help us improve
|
about: Create a report to help us improve
|
||||||
title: '🐛'
|
title: '🐛'
|
||||||
labels: type/bug
|
labels: type:bug
|
||||||
assignees:
|
assignees:
|
||||||
|
|
||||||
---
|
---
|
||||||
|
|||||||
2
.github/ISSUE_TEMPLATE/document_issue.md
vendored
2
.github/ISSUE_TEMPLATE/document_issue.md
vendored
@@ -2,7 +2,7 @@
|
|||||||
name: Document request
|
name: Document request
|
||||||
about: Request a change to documentation
|
about: Request a change to documentation
|
||||||
title: '📚'
|
title: '📚'
|
||||||
labels: type/docs
|
labels: type:docs
|
||||||
assignees:
|
assignees:
|
||||||
|
|
||||||
---
|
---
|
||||||
|
|||||||
2
.github/ISSUE_TEMPLATE/feature_request.md
vendored
2
.github/ISSUE_TEMPLATE/feature_request.md
vendored
@@ -2,7 +2,7 @@
|
|||||||
name: Feature request
|
name: Feature request
|
||||||
about: Suggest an idea for this project
|
about: Suggest an idea for this project
|
||||||
title: '✨'
|
title: '✨'
|
||||||
labels: type/feature
|
labels: type:feature
|
||||||
assignees:
|
assignees:
|
||||||
|
|
||||||
---
|
---
|
||||||
|
|||||||
20
.github/issue-branch.yml
vendored
20
.github/issue-branch.yml
vendored
@@ -2,14 +2,14 @@ mode: auto
|
|||||||
silent: false
|
silent: false
|
||||||
branchName: '${issue.number}'
|
branchName: '${issue.number}'
|
||||||
branches:
|
branches:
|
||||||
- label: type/feature
|
- label: type:feature
|
||||||
prefix: feat/
|
prefix: feat-
|
||||||
- label: type/bug
|
- label: type:bug
|
||||||
prefix: bug/
|
prefix: bug-
|
||||||
- label: type/epic
|
- label: type:epic
|
||||||
prefix: epic/
|
prefix: epic-
|
||||||
- label: type/docs
|
- label: type:docs
|
||||||
prefix: docs/
|
prefix: docs-
|
||||||
- label: type/automation
|
- label: type:automation
|
||||||
prefix: auto/
|
prefix: auto-
|
||||||
autoCloseIssue: true
|
autoCloseIssue: true
|
||||||
|
|||||||
2
.github/workflows/autobranch.yml
vendored
2
.github/workflows/autobranch.yml
vendored
@@ -3,8 +3,6 @@ name: Auto-create branches
|
|||||||
on:
|
on:
|
||||||
issues:
|
issues:
|
||||||
types: [assigned]
|
types: [assigned]
|
||||||
issue_comment:
|
|
||||||
types: [created]
|
|
||||||
|
|
||||||
jobs:
|
jobs:
|
||||||
create_issue_branch_job:
|
create_issue_branch_job:
|
||||||
|
|||||||
4
.github/workflows/stale.yml
vendored
4
.github/workflows/stale.yml
vendored
@@ -15,5 +15,5 @@ jobs:
|
|||||||
repo-token: ${{ secrets.GITHUB_TOKEN }}
|
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-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-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-issue-label: 'status:stale'
|
||||||
stale-pr-label: 'status/stale'
|
stale-pr-label: 'status:stale'
|
||||||
|
|||||||
Reference in New Issue
Block a user