From 9247495feedebb90502878ebd2d0614b6db055f3 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Bal=C3=A1zs=20Orb=C3=A1n?= Date: Sat, 5 Dec 2020 14:15:55 +0100 Subject: [PATCH 1/6] chore: use stale label, instead of wontfix --- .github/stale.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/stale.yml b/.github/stale.yml index 6cf5f35ebd..449d0b9e6f 100644 --- a/.github/stale.yml +++ b/.github/stale.yml @@ -8,7 +8,7 @@ exemptLabels: - security - priority # Label to use when marking an issue as stale -staleLabel: wontfix +staleLabel: stale # Comment to post when marking an issue as stale. Set to `false` to disable markComment: > Hi there! It looks like this issue hasn't had any activity for a while. From b2c1f320572be965248852883bfdf93bfa858579 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Bal=C3=A1zs=20Orb=C3=A1n?= Date: Sat, 5 Dec 2020 14:19:45 +0100 Subject: [PATCH 2/6] chore: add link to issue explaining stalebot --- .github/stale.yml | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/.github/stale.yml b/.github/stale.yml index 449d0b9e6f..1af78c11f9 100644 --- a/.github/stale.yml +++ b/.github/stale.yml @@ -13,10 +13,12 @@ staleLabel: stale markComment: > Hi there! It looks like this issue hasn't had any activity for a while. It will be closed if no further activity occurs. If you think your issue - is still relevant, feel free to comment on it to keep ot open. Thanks! + is still relevant, feel free to comment on it to keep ot open. (Read more at #912) + Thanks! # Comment to post when closing a stale issue. Set to `false` to disable closeComment: > Hi there! It looks like this issue hasn't had any activity for a while. To keep things tidy, I am going to close this issue for now. If you think your issue is still relevant, just leave a comment - and I will reopen it. Thanks! + and I will reopen it. (Read more at #912) + Thanks! From 7d1168637d5136e2382ab45d7319f3326cffbc2f Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Bal=C3=A1zs=20Orb=C3=A1n?= Date: Sat, 5 Dec 2020 16:30:09 +0100 Subject: [PATCH 3/6] chore: fix typo in stalebot comment --- .github/stale.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/stale.yml b/.github/stale.yml index 1af78c11f9..87267808c0 100644 --- a/.github/stale.yml +++ b/.github/stale.yml @@ -13,7 +13,7 @@ staleLabel: stale markComment: > Hi there! It looks like this issue hasn't had any activity for a while. It will be closed if no further activity occurs. If you think your issue - is still relevant, feel free to comment on it to keep ot open. (Read more at #912) + is still relevant, feel free to comment on it to keep it open. (Read more at #912) Thanks! # Comment to post when closing a stale issue. Set to `false` to disable closeComment: > From 610ab39b40490f84ec963640aff74d0550ff106d Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Bal=C3=A1zs=20Orb=C3=A1n?= Date: Sat, 5 Dec 2020 18:53:31 +0100 Subject: [PATCH 4/6] chore: run build GitHub Action on canary also --- .github/workflows/build.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index bfaad312c5..c00431e4d0 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -4,9 +4,9 @@ name: Build Test on: push: - branches: [ main ] + branches: [ main, canary ] pull_request: - branches: [ main ] + branches: [ main, canary ] jobs: build: From e4cc3a92e5c533e647ee62a0716bba2269ee40c1 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Bal=C3=A1zs=20Orb=C3=A1n?= Date: Sat, 5 Dec 2020 19:47:09 +0100 Subject: [PATCH 5/6] chore: run build GitHub Actions on canary as well --- .github/workflows/build.yml | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index c00431e4d0..e97ec9e910 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -4,9 +4,13 @@ name: Build Test on: push: - branches: [ main, canary ] + branches: + - main + - canary pull_request: - branches: [ main, canary ] + branches: + - main + - canary jobs: build: From 6f067be7b002b7b5c7d38834e900cd082996b860 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Bal=C3=A1zs=20Orb=C3=A1n?= Date: Sat, 5 Dec 2020 21:40:12 +0100 Subject: [PATCH 6/6] chore: add reproduction section to questions --- .github/ISSUE_TEMPLATE/question.md | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/.github/ISSUE_TEMPLATE/question.md b/.github/ISSUE_TEMPLATE/question.md index 3beee1d9ab..6431f4f356 100644 --- a/.github/ISSUE_TEMPLATE/question.md +++ b/.github/ISSUE_TEMPLATE/question.md @@ -6,10 +6,13 @@ assignees: '' --- **Your question** -A clear and concise question. + **What are you trying to do** -A description of what you are trying to do, for context. + + +**Reproduction** + **Feedback** *Documentation refers to searching through [online documentation](https://next-auth.js.org), code comments and issue history. The example project refers to [next-auth-example](https://github.com/iaincollins/next-auth-example).*