Skip to content
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

Fix templates #165

Merged
merged 2 commits into from
Aug 22, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/ISSUE_TEMPLATE/bug.md
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ If multiple identifiers make sense you can also state the commands multiple time
-->
/area TODO
/kind bug
/platform aws
/platform openstack

**What happened**:

Expand Down
2 changes: 1 addition & 1 deletion .github/ISSUE_TEMPLATE/feature.md
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ If multiple identifiers make sense you can also state the commands multiple time
-->
/area TODO
/kind enhancement
/platform aws
/platform openstack

**What would you like to be added**:

Expand Down
2 changes: 1 addition & 1 deletion .github/ISSUE_TEMPLATE/flaking-test.md
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ If multiple identifiers make sense you can also state the commands multiple time
-->
/area testing
/kind flake
/platform aws
/platform openstack

**Which test(s)/suite(s) are flaking**:

Expand Down
2 changes: 1 addition & 1 deletion .github/pull_request_template.md
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ For Gardener Enhancement Proposals (GEPs), please check the following [documenta
-->
/area TODO
/kind TODO
/platform aws
/platform openstack

**What this PR does / why we need it**:

Expand Down
2 changes: 1 addition & 1 deletion hack/update-github-templates.sh
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,6 @@ for file in `find "${GARDENER_HACK_DIR}"/../.github -name '*.md'`; do
sed 's/to the Gardener project/for this extension/g' |\
sed 's/to Gardener/to this extension/g' |\
sed 's/- Gardener version:/- Gardener version (if relevant):\n- Extension version:/g' |\
sed 's/\/kind [a-zA-Z]*/&\n\/platform aws/g' \
sed 's/\/kind [a-zA-Z]*/&\n\/platform openstack/g' \
> "$(dirname $0)/../.github/${file#*.github/}"
done
Loading