diff --git a/.github/ISSUE_TEMPLATE/bug_report.md b/.github/ISSUE_TEMPLATE/bug_report.md index 2be28c8..8e9fcec 100644 --- a/.github/ISSUE_TEMPLATE/bug_report.md +++ b/.github/ISSUE_TEMPLATE/bug_report.md @@ -4,6 +4,7 @@ about: Create a report to help us improve title: "" labels: - "type: bug" + - "waiting-on-developer" assignees: '' --- diff --git a/.github/ISSUE_TEMPLATE/feature_request.md b/.github/ISSUE_TEMPLATE/feature_request.md index 8cd72b0..a9db43b 100644 --- a/.github/ISSUE_TEMPLATE/feature_request.md +++ b/.github/ISSUE_TEMPLATE/feature_request.md @@ -4,6 +4,7 @@ about: Suggest an idea for this project title: '' labels: - "type: feature-request" + - "waiting-on-developer" assignees: '' --- diff --git a/.github/ISSUE_TEMPLATE/support_request.md b/.github/ISSUE_TEMPLATE/support_request.md index 00596b8..a194cac 100644 --- a/.github/ISSUE_TEMPLATE/support_request.md +++ b/.github/ISSUE_TEMPLATE/support_request.md @@ -4,6 +4,7 @@ about: Need some help? Got an error message? title: "" labels: - "type: support" + - "waiting-on-developer" assignees: '' --- diff --git a/.github/workflows/issue-responsibility.yml b/.github/workflows/issue-responsibility.yml index a31f8c4..11de21d 100644 --- a/.github/workflows/issue-responsibility.yml +++ b/.github/workflows/issue-responsibility.yml @@ -28,7 +28,7 @@ jobs: const developers = ["jamesread"] const commenterIsDeveloper = developers.includes(commentAuthor); - const commentorIsUser = !commenterIsDeveloper; + const commenterIsUser = !commenterIsDeveloper; const issueLabels = context.payload.issue.labels.map(label => label.name);