diff --git a/.github/ISSUE_TEMPLATE/bug_report.md b/.github/ISSUE_TEMPLATE/bug_report.md index 95f837d..02b5796 100644 --- a/.github/ISSUE_TEMPLATE/bug_report.md +++ b/.github/ISSUE_TEMPLATE/bug_report.md @@ -2,7 +2,7 @@ name: Bug report about: Create a report to help us improve title: '🐛' -labels: type/bug +labels: type:bug assignees: --- diff --git a/.github/ISSUE_TEMPLATE/document_issue.md b/.github/ISSUE_TEMPLATE/document_issue.md index 6faf7db..9e7d60f 100644 --- a/.github/ISSUE_TEMPLATE/document_issue.md +++ b/.github/ISSUE_TEMPLATE/document_issue.md @@ -2,7 +2,7 @@ name: Document request about: Request a change to documentation title: '📚' -labels: type/docs +labels: type:docs assignees: --- diff --git a/.github/ISSUE_TEMPLATE/feature_request.md b/.github/ISSUE_TEMPLATE/feature_request.md index 8ce8220..3d2caf7 100644 --- a/.github/ISSUE_TEMPLATE/feature_request.md +++ b/.github/ISSUE_TEMPLATE/feature_request.md @@ -2,7 +2,7 @@ name: Feature request about: Suggest an idea for this project title: '✨' -labels: type/feature +labels: type:feature assignees: --- diff --git a/.github/issue-branch.yml b/.github/issue-branch.yml index b677a91..6b49f73 100644 --- a/.github/issue-branch.yml +++ b/.github/issue-branch.yml @@ -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 diff --git a/.github/workflows/autobranch.yml b/.github/workflows/autobranch.yml index 4ed3855..d164ef7 100644 --- a/.github/workflows/autobranch.yml +++ b/.github/workflows/autobranch.yml @@ -3,8 +3,6 @@ name: Auto-create branches on: issues: types: [assigned] - issue_comment: - types: [created] jobs: create_issue_branch_job: diff --git a/.github/workflows/stale.yml b/.github/workflows/stale.yml index 6667465..fe2842b 100644 --- a/.github/workflows/stale.yml +++ b/.github/workflows/stale.yml @@ -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'