Skip to content

Commit 848e9c2

Browse files
authored
Merge pull request #121 from tv2-oss/feature/add-issue-templates-etc
Add issue templates and PR template
2 parents a78f448 + 5223300 commit 848e9c2

File tree

9 files changed

+90
-8
lines changed

9 files changed

+90
-8
lines changed

.github/CODEOWNERS

Lines changed: 1 addition & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,5 @@
1-
# This is a comment.
21
# Docs: https://docs.github.com/en/repositories/managing-your-repositorys-settings-and-features/customizing-your-repository/about-code-owners
32

43
# Each line is a file pattern followed by one or more owners.
54

6-
# These owners will be the default owners for everything '*'
7-
# in the repo. Unless a later match takes precedence,
8-
# this owner will be requested for review when someone
9-
# opens a pull request.
10-
* @mvillumsen @MichaelVL
5+
* @mvillumsen @michaelvl
Lines changed: 36 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,36 @@
1+
---
2+
name: Bug report
3+
about: Create a report to help us improve
4+
title: ''
5+
labels: 'bug'
6+
assignees: ''
7+
---
8+
9+
Checklist:
10+
11+
* [ ] I have search existing issues for duplicates of the bug.
12+
* [ ] I have included steps to reproduce the bug.
13+
* [ ] I have included version information for container and Helm chart that this bug applies to.
14+
* [ ] I have included relevant custom GatewayClassBlueprints, GatewayClassConfig and GatewayConfig.
15+
16+
**Describe the bug**
17+
18+
<!-- A clear and concise description of what the bug is. -->
19+
20+
**To Reproduce**
21+
22+
<!-- A list of the steps required to reproduce the issue. Best of all, give us the URL to a repository that exhibits this issue. -->
23+
24+
**Expected behavior**
25+
26+
<!-- A clear and concise description of what you expected to happen. -->
27+
28+
**Versions**
29+
30+
<!-- Container and Helm chart version. Also, when applicable, versions of blueprints -->
31+
32+
**Logs**
33+
34+
```
35+
Paste any relevant application logs here.
36+
```

.github/ISSUE_TEMPLATE/config.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
blank_issues_enabled: false
Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,18 @@
1+
---
2+
name: Enhancement proposal
3+
about: Propose an enhancement for this project
4+
title: ''
5+
labels: 'enhancement'
6+
assignees: ''
7+
---
8+
# Summary
9+
10+
What change you think needs making.
11+
12+
# Motivation
13+
14+
Please give examples of your use case, e.g. when would you use this.
15+
16+
# Proposal
17+
18+
How do you think this should be implemented?

.github/pull_request_template.md

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
**Description**
2+
3+
<!-- Please provide a summary of the change here. -->
4+
5+
<!-- Please link to all GitHub issue that this pull request implements -->
6+
Fixes #ISSUE
7+
8+
**Checklist**
9+
10+
- [ ] Unit tests updated
11+
- [ ] End user documentation updated
12+
- [ ] If changes apply to Helm chart, a note have been made in the 'UNRELEASED' section of the charts CHANGELOG.md

.github/workflows/chart-publish.yaml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,8 @@ on:
44
push:
55
branches:
66
- main
7+
paths:
8+
- 'charts/gateway-controller/**'
79

810
jobs:
911
release:
Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,18 @@
1+
# Gateway-controller Helm Chart Changelog
2+
3+
## [UNRELEASED]
4+
5+
- Example text, replace with PR info according to example below.
6+
7+
8+
## [0.1.5]
9+
10+
- Bump version as part of name change. ([#125](https://github.com/tv2-oss/gateway-controller/pull/125)) [@michaelvl](https://github.com/michaelvl)
11+
12+
## [0.1.4]
13+
14+
- Add issue templates and PR template. ([#121](https://github.com/tv2-oss/gateway-controller/pull/121)) [@michaelvl](https://github.com/michaelvl)
15+
16+
## [0.1.3]
17+
18+
- Helm chart corrections and test. ([#103](https://github.com/tv2-oss/gateway-controller/pull/103)) [@michaelvl](https://github.com/michaelvl)

charts/bifrost-gateway-controller/Chart.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,5 +2,5 @@ apiVersion: v2
22
name: bifrost-gateway-controller
33
description: Gateway API driven management of network infrastructure across Kubernetes and cloud infrastructure
44
type: application
5-
version: 0.1.4
5+
version: 0.1.5
66
appVersion: "0.0.13"

charts/bifrost-gateway-controller/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# bifrost-gateway-controller
22

3-
![Version: 0.1.4](https://img.shields.io/badge/Version-0.1.4-informational?style=flat-square) ![Type: application](https://img.shields.io/badge/Type-application-informational?style=flat-square) ![AppVersion: 0.0.13](https://img.shields.io/badge/AppVersion-0.0.13-informational?style=flat-square)
3+
![Version: 0.1.5](https://img.shields.io/badge/Version-0.1.5-informational?style=flat-square) ![Type: application](https://img.shields.io/badge/Type-application-informational?style=flat-square) ![AppVersion: 0.0.13](https://img.shields.io/badge/AppVersion-0.0.13-informational?style=flat-square)
44

55
Gateway API driven management of network infrastructure across Kubernetes and cloud infrastructure
66

0 commit comments

Comments
 (0)