-
-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add templates for abnormal task duration and recipe missconfiguration
- Loading branch information
Showing
3 changed files
with
49 additions
and
3 deletions.
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,18 @@ | ||
name: Zimfarm Recipe Configuration Issue | ||
description: To report an issue on improper configuration of a openZIM Zimfarm (farm.openzim.org) recipe | ||
title: '<recipe_name> configuration is incorrect' | ||
labels: ["Bug"] | ||
body: | ||
- type: input | ||
id: recipe_url | ||
attributes: | ||
label: Recipe URL | ||
description: The recipe which is improperly configured | ||
placeholder: https://farm.openzim.org/recipes/xxxx | ||
validations: | ||
required: true | ||
- type: textarea | ||
id: details | ||
attributes: | ||
label: What is wrong | ||
placeholder: Add here more details about what should be fixed |
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,28 @@ | ||
name: Zimfarm Task Duration Issue | ||
description: To report an issue on a openZIM Zimfarm (farm.openzim.org) abnormal task duration | ||
title: 'Last task of <recipe_name> takes too long' | ||
labels: ["Bug"] | ||
body: | ||
- type: input | ||
id: recipe_url | ||
attributes: | ||
label: Recipe URL | ||
description: The recipe which encountered a problem | ||
placeholder: https://farm.openzim.org/recipes/xxxx | ||
validations: | ||
required: true | ||
- type: input | ||
id: task_url | ||
attributes: | ||
label: Task URL | ||
description: The task which takes too long to complete | ||
placeholder: https://farm.openzim.org/pipeline/xxxx | ||
validations: | ||
required: true | ||
- type: textarea | ||
id: details | ||
attributes: | ||
label: Details | ||
placeholder: Share details about why you consider task duration abnormal | ||
validations: | ||
required: true |