-
Notifications
You must be signed in to change notification settings - Fork 6
Add default issue templates and make the header automation to run on issues from this repo #27
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Merged
MisRob
merged 2 commits into
learningequality:main
from
MisRob:templates-and-automation
Jun 12, 2025
Merged
Changes from all commits
Commits
Show all changes
2 commits
Select commit
Hold shift + click to select a range
File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,8 @@ | ||
| blank_issues_enabled: false | ||
| contact_links: | ||
| - name: Kolibri GitHub Discussions | ||
| url: https://github.com/learningequality/kolibri/discussions | ||
| about: Please ask general questions about contributing to Kolibri or report development server issues here. | ||
| - name: Learning Equality Community Forum | ||
| url: https://community.learningequality.org/ | ||
| about: Ask and answer questions about Learning Equality's products and tools, share your experiences using Kolibri, and connect with users around the world. |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,41 @@ | ||
| --- | ||
| name: Enhancement request | ||
| about: Suggest an idea | ||
| title: "[Title]: [Brief description]" | ||
| --- | ||
|
|
||
| <!-- | ||
|
|
||
| Note that anything written between these symbols will not appear in the actual, published issue. They serve as instructions for filling out this template. Please use the 'preview' tab above this textbox to verify formatting before submitting. | ||
|
|
||
| Instructions: | ||
| - Start by replacing the content in "[Title]" and give a "[Brief description]" of the issue above | ||
| - Please remove any unused, optional sections below. | ||
|
|
||
| --> | ||
|
|
||
| <!-- DO NOT REMOVE THE HEADER --> | ||
| <!---HEADER START--> | ||
|
|
||
| <img height="20px" src="https://i.imgur.com/c7hUeb5.jpeg"> | ||
|
|
||
| ❌ **This issue is not open for contribution. Visit <a href="https://learningequality.org/contributing-to-our-open-code-base/" target="_blank">Contributing guidelines</a>** to learn about the contributing process and how to find suitable issues. | ||
|
|
||
| <img height="20px" src="https://i.imgur.com/c7hUeb5.jpeg"> | ||
|
|
||
| <!---HEADER END--> | ||
|
|
||
| ## Desired behavior | ||
| <!-- Briefly describe the behavior you would like to see --> | ||
|
|
||
|
|
||
| ## Current behavior | ||
| <!-- Briefly describe the current behavior; you may include screenshots, code, and notes --> | ||
|
|
||
|
|
||
| ## Value add | ||
| <!-- (Optional) Explain why this should be added or changed in KDS and where it could be used --> | ||
|
|
||
|
|
||
| ## Possible tradeoffs | ||
| <!-- (Optional) Explain possible issues/costs that could arise - if any - from implementing this enhancement --> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,17 @@ | ||
| --- | ||
| name: Other issue | ||
| about: For issues that don't fit any other category | ||
| --- | ||
|
|
||
| <!-- DO NOT REMOVE THE HEADER --> | ||
| <!---HEADER START--> | ||
|
|
||
| <img height="20px" src="https://i.imgur.com/c7hUeb5.jpeg"> | ||
|
|
||
| ❌ **This issue is not open for contribution. Visit <a href="https://learningequality.org/contributing-to-our-open-code-base/" target="_blank">Contributing guidelines</a>** to learn about the contributing process and how to find suitable issues. | ||
|
|
||
| <img height="20px" src="https://i.imgur.com/c7hUeb5.jpeg"> | ||
|
|
||
| <!---HEADER END--> | ||
|
|
||
| ## Description |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -1,6 +1,8 @@ | ||
| name: Manage issue header | ||
|
|
||
| on: | ||
| issues: | ||
| types: [labeled, unlabeled] | ||
| workflow_call: | ||
| secrets: | ||
| LE_BOT_APP_ID: | ||
|
|
||
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Might it be more helpful to make a small wrapper action that does the workflow_call from within it, so that this is then an example, and a complete test of how it will be used in other repos?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Yes, nice idea. Will do as follow-up as we chatted.