-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
4 changed files
with
126 additions
and
1 deletion.
There are no files selected for viewing
This file contains 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 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
80 changes: 80 additions & 0 deletions
80
repoman/src/main/resources/templates/github/ISSUE_TEMPLATE/20-report-a-bug.yml.kte
This file contains 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,80 @@ | ||
@import org.metaborg.repoman.meta.RepoMetadata | ||
@param meta: RepoMetadata | ||
--- | ||
@if(meta.files.gradleRootProject.update) | ||
# !! THIS FILE WAS GENERATED USING repoman !! | ||
# Modify `repo.yaml` instead and use `repoman` to update this file | ||
# See: https://github.com/metaborg/metaborg-gradle/ | ||
|
||
@endif | ||
name: "🐞 Report a Bug" | ||
description: File a bug report or issue for any project in ${meta.title}. | ||
title: "[Bug]: " | ||
labels: ["bug", "triage"] | ||
@if(meta.files.githubIssueTemplates.assignDevelopers) | ||
assignees: | ||
@for(person in meta.developers) | ||
- ${person.id} | ||
@endfor | ||
@endif | ||
body: | ||
@if(meta.files.gradleRootProject.includedBuilds.isNotEmpty() || meta.files.gradleRootProject.includedProjects.isNotEmpty()) | ||
- type: dropdown | ||
id: project | ||
attributes: | ||
label: For which project in this repository does the issue occur? | ||
multiple: true | ||
options: | ||
@for(project in meta.files.gradleRootProject.includedProjects) | ||
- "${project.name}" | ||
@endfor | ||
@for(build in meta.files.gradleRootProject.includedBuilds) | ||
- "${build.name}" | ||
@endfor | ||
@else | ||
- type: textarea | ||
attributes: | ||
label: Project | ||
description: For which project in this repository does the issue occur? | ||
validations: | ||
required: false | ||
@endif | ||
- type: textarea | ||
attributes: | ||
label: Version | ||
description: The version of Spoofax or the commit of this project where the issue occurs. | ||
validations: | ||
required: false | ||
- type: textarea | ||
attributes: | ||
label: Describe the issue | ||
description: A clear and concise description of what the bug is. | ||
validations: | ||
required: false | ||
- type: textarea | ||
attributes: | ||
label: Expected Behavior | ||
description: A concise description of what you expected to happen. | ||
validations: | ||
required: false | ||
- type: textarea | ||
attributes: | ||
label: Actual Behavior | ||
description: A concise description of what happened instead. | ||
validations: | ||
required: false | ||
- type: textarea | ||
attributes: | ||
label: Steps To Reproduce | ||
description: Steps to reproduce the behavior. | ||
validations: | ||
required: false | ||
- type: textarea | ||
attributes: | ||
label: Anything else? | ||
description: | | ||
Links? References? Anything that will give us more context about the issue you are encountering! | ||
|
||
Tip: You can attach images, log files, or an example project by clicking this area to highlight it and then dragging files in. | ||
validations: | ||
required: false |
22 changes: 22 additions & 0 deletions
22
repoman/src/main/resources/templates/github/ISSUE_TEMPLATE/config.yml.kte
This file contains 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,22 @@ | ||
@import org.metaborg.repoman.meta.RepoMetadata | ||
@param meta: RepoMetadata | ||
--- | ||
blank_issues_enabled: false | ||
contact_links: | ||
- name: 📚 Spoofax Documentation | ||
url: https://www.spoofax.dev/ | ||
about: Documentation about Spoofax and all included Meta-Languages. | ||
- name: ⁉️ Spoofax Support Page | ||
url: https://www.spoofax.dev/support | ||
about: Information on Spoofax Support, and how to get in touch. | ||
- name: 🙋🏽 Spoofax Users Channel | ||
url: https://slde.slack.com/archives/C7254SF60 | ||
about: The Spoofax Users channel on Slack. See the Spoofax Support Page on how to gain access. | ||
@if(meta.files.githubIssueTemplates.useDiscussions) | ||
- name: 💬 Discussions | ||
url: https://github.com/${meta.repoOwner}/${meta.repoName}/discussions/ | ||
about: Alternatively, ask questions in the Discussions tab. | ||
@endif | ||
- name: 🛡️ Security issue | ||
url: https://github.com/${meta.repoOwner}/${meta.repoName}/security/advisories/new | ||
about: Security issue? Do not report security issues publicly, but create a private advisory. |