From 7c768c901db765541299d4a4146e29a0e9711fb9 Mon Sep 17 00:00:00 2001 From: Jonas Hummelstrand Date: Wed, 13 Dec 2023 10:23:31 +0100 Subject: [PATCH 1/3] Delete .github/CONTRIBUTING.md --- .github/CONTRIBUTING.md | 3 --- 1 file changed, 3 deletions(-) delete mode 100755 .github/CONTRIBUTING.md diff --git a/.github/CONTRIBUTING.md b/.github/CONTRIBUTING.md deleted file mode 100755 index 5ac541a7c7..0000000000 --- a/.github/CONTRIBUTING.md +++ /dev/null @@ -1,3 +0,0 @@ -# Example Contributing Guidelines - -This is an example of GitHub's contributing guidelines file. Check out GitHub's [CONTRIBUTING.md help center article](https://help.github.com/articles/setting-guidelines-for-repository-contributors/) for more information. From 7722a2db0a4d8983c3f9e96c473bfcd93b55ba0a Mon Sep 17 00:00:00 2001 From: Jonas Hummelstrand Date: Wed, 13 Dec 2023 10:23:41 +0100 Subject: [PATCH 2/3] Delete .github/ISSUE_TEMPLATE directory --- .github/ISSUE_TEMPLATE/BUG_REPORT.md | 38 ----------------------- .github/ISSUE_TEMPLATE/OTHER.md | 22 ------------- .github/ISSUE_TEMPLATE/QUESTION.md | 22 ------------- .github/ISSUE_TEMPLATE/RFC.md | 46 ---------------------------- 4 files changed, 128 deletions(-) delete mode 100644 .github/ISSUE_TEMPLATE/BUG_REPORT.md delete mode 100644 .github/ISSUE_TEMPLATE/OTHER.md delete mode 100644 .github/ISSUE_TEMPLATE/QUESTION.md delete mode 100644 .github/ISSUE_TEMPLATE/RFC.md diff --git a/.github/ISSUE_TEMPLATE/BUG_REPORT.md b/.github/ISSUE_TEMPLATE/BUG_REPORT.md deleted file mode 100644 index 56355ffce5..0000000000 --- a/.github/ISSUE_TEMPLATE/BUG_REPORT.md +++ /dev/null @@ -1,38 +0,0 @@ ---- -name: Bug Report -description: Use this if you've found a bug -title: "Bug Report: [Short description of the bug]" -labels: 🐛bug -assignees: '' - ---- - - - -## About Me - - -## Observed Behavior - - -## Expected Behavior - - -## Version - - -## Severity / Impact - - - diff --git a/.github/ISSUE_TEMPLATE/OTHER.md b/.github/ISSUE_TEMPLATE/OTHER.md deleted file mode 100644 index 9b597cd7d2..0000000000 --- a/.github/ISSUE_TEMPLATE/OTHER.md +++ /dev/null @@ -1,22 +0,0 @@ ---- -name: Other Issue -description: Use this for other issues -title: "Other: [Short description of the issue]" -labels: "Other" -assignees: '' - ---- - - - -## About Me - - -## Issue - diff --git a/.github/ISSUE_TEMPLATE/QUESTION.md b/.github/ISSUE_TEMPLATE/QUESTION.md deleted file mode 100644 index 39d6f48fed..0000000000 --- a/.github/ISSUE_TEMPLATE/QUESTION.md +++ /dev/null @@ -1,22 +0,0 @@ ---- -name: Question -description: Use this if you have a question to the Sofie team -title: "Question: [Short summary of the question]" -labels: ❓ Question -assignees: '' - ---- - - - -## About Me - - -## My Question - diff --git a/.github/ISSUE_TEMPLATE/RFC.md b/.github/ISSUE_TEMPLATE/RFC.md deleted file mode 100644 index 4cc485cd51..0000000000 --- a/.github/ISSUE_TEMPLATE/RFC.md +++ /dev/null @@ -1,46 +0,0 @@ ---- -name: Request for Comments -description: Use this to initiate a discussion about a new feature or a larger change -title: "RFC: [Short description of the feature/change]" -labels: RFC, Contribution -assignees: '' - ---- - - - -## About Me - - -## Background - - - -## Proposal - - - -## Status - - -The Sofie Team will evaluate this RFC and open up a discussion about it, usually within a week. - -- [x] RFC created -- [ ] Sofie Team has evaluated the RFC -- [ ] A workshop has been planned -- [ ] RFC has been discussed in a workshop -- [ ] A conclusion has been reached, see comments in thread. From de82e98e63ff84db4c8d7ae0ff459d1c670d2a95 Mon Sep 17 00:00:00 2001 From: Jonas Hummelstrand Date: Wed, 13 Dec 2023 10:23:58 +0100 Subject: [PATCH 3/3] Add files via upload --- .github/ISSUE_TEMPLATE/bug_report.yml | 50 +++++++++++++++++++++++++++ .github/ISSUE_TEMPLATE/config.yml | 1 + .github/ISSUE_TEMPLATE/other.yml | 27 +++++++++++++++ .github/ISSUE_TEMPLATE/question.yml | 27 +++++++++++++++ .github/ISSUE_TEMPLATE/rfc.yml | 47 +++++++++++++++++++++++++ 5 files changed, 152 insertions(+) create mode 100644 .github/ISSUE_TEMPLATE/bug_report.yml create mode 100644 .github/ISSUE_TEMPLATE/config.yml create mode 100644 .github/ISSUE_TEMPLATE/other.yml create mode 100644 .github/ISSUE_TEMPLATE/question.yml create mode 100644 .github/ISSUE_TEMPLATE/rfc.yml diff --git a/.github/ISSUE_TEMPLATE/bug_report.yml b/.github/ISSUE_TEMPLATE/bug_report.yml new file mode 100644 index 0000000000..8a6fd7b582 --- /dev/null +++ b/.github/ISSUE_TEMPLATE/bug_report.yml @@ -0,0 +1,50 @@ +name: Bug Report 🐛 +description: Use this if you've found a bug +title: "Bug Report: [Short description of the bug]" +labels: + - 🐛bug + +body: + - type: markdown + attributes: + value: | + Before you post, be sure to read our Contribution guidelines: + https://nrkno.github.io/sofie-core/docs/for-developers/contribution-guidelines + + - type: textarea + attributes: + label: About me + description: Tell us who / which organization you are representing, and how the Sofie team will be able to contact you. + placeholder: Example "This RFC is posted on behalf of the NRK." + validations: + required: true + + - type: textarea + attributes: + label: Observed Behavior + description: What happened? + validations: + required: true + + - type: textarea + attributes: + label: Expected Behavior + description: What did you expect to happen? + validations: + required: true + + - type: input + attributes: + label: Version + description: What version of Sofie Core / Gateways / other components are you using? + validations: + required: true + + - type: textarea + attributes: + label: Severity / Impact + description: How big of an issue is this? How does this limit your operations? + placeholder: | + Examples: + * This is a blocker for us, we cannot use feature X until this is fixed. + * Not a big issue for us, but it would be nice to have this fixed. diff --git a/.github/ISSUE_TEMPLATE/config.yml b/.github/ISSUE_TEMPLATE/config.yml new file mode 100644 index 0000000000..3ba13e0cec --- /dev/null +++ b/.github/ISSUE_TEMPLATE/config.yml @@ -0,0 +1 @@ +blank_issues_enabled: false diff --git a/.github/ISSUE_TEMPLATE/other.yml b/.github/ISSUE_TEMPLATE/other.yml new file mode 100644 index 0000000000..c329fcbef7 --- /dev/null +++ b/.github/ISSUE_TEMPLATE/other.yml @@ -0,0 +1,27 @@ +name: Other Issue 🔧 +description: Use this for other issues +title: "Other: [Short description of the issue]" +labels: + - Other + +body: + - type: markdown + attributes: + value: | + Before you post, be sure to read our Contribution guidelines: + https://nrkno.github.io/sofie-core/docs/for-developers/contribution-guidelines + + - type: textarea + attributes: + label: About me + description: Tell us who / which organization you are representing, and how the Sofie team will be able to contact you. + placeholder: Example "This RFC is posted on behalf of the NRK." + validations: + required: true + + - type: textarea + attributes: + label: Issue + description: Describe the issue below + validations: + required: true diff --git a/.github/ISSUE_TEMPLATE/question.yml b/.github/ISSUE_TEMPLATE/question.yml new file mode 100644 index 0000000000..c1154101ba --- /dev/null +++ b/.github/ISSUE_TEMPLATE/question.yml @@ -0,0 +1,27 @@ +name: Question ❓ +description: Use this if you have a question to the Sofie team +title: "Question: [Short summary of the question]" +labels: + - ❓ Question + +body: + - type: markdown + attributes: + value: | + Before you post, be sure to read our Contribution guidelines: + https://nrkno.github.io/sofie-core/docs/for-developers/contribution-guidelines + + - type: textarea + attributes: + label: About me + description: Tell us who / which organization you are representing, and how the Sofie team will be able to contact you. + placeholder: Example "This RFC is posted on behalf of the NRK." + validations: + required: true + + - type: textarea + attributes: + label: My Question + description: Write your question below + validations: + required: true diff --git a/.github/ISSUE_TEMPLATE/rfc.yml b/.github/ISSUE_TEMPLATE/rfc.yml new file mode 100644 index 0000000000..a7a907f3ef --- /dev/null +++ b/.github/ISSUE_TEMPLATE/rfc.yml @@ -0,0 +1,47 @@ +name: Request for Comments ❗ +description: Use this to initiate a discussion about a new feature or a larger change +title: "RFC: [Short description of the feature/change]" +labels: + - RFC + - Contribution + +body: + - type: markdown + attributes: + value: | + Before you post, be sure to read our Contribution guidelines: + https://nrkno.github.io/sofie-core/docs/for-developers/contribution-guidelines + + - type: textarea + attributes: + label: About me + description: Tell us who / which organization you are representing, and how the Sofie team will be able to contact you. + placeholder: Example "This RFC is posted on behalf of the NRK." + validations: + required: true + + - type: textarea + attributes: + label: Use case + description: "Please write some background information here, such as: What is your use case? What problem are you trying to solve?" + validations: + required: true + + - type: textarea + attributes: + label: Proposal + description: Please describe your proposal here + validations: + required: true + + - type: textarea + attributes: + label: Process + description: Please don't touch this section, the Sofie team will update this as the RFC progresses. + value: | + The Sofie Team will evaluate this RFC and open up a discussion about it, usually within a week. + - [x] RFC created + - [ ] Sofie Team has evaluated the RFC + - [ ] A workshop has been planned + - [ ] RFC has been discussed in a workshop + - [ ] A conclusion has been reached, see comments in thread