-
Notifications
You must be signed in to change notification settings - Fork 4
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'main' into pr-template
- Loading branch information
Showing
2 changed files
with
46 additions
and
0 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,11 @@ | ||
# yaml-language-server: $schema=https://json.schemastore.org/github-issue-config.json | ||
|
||
blank_issues_enabled: true | ||
|
||
contact_links: | ||
- name: Discussions | ||
url: https://github.com/kyverno/kyverno-envoy-plugin/discussions | ||
about: Please ask and answer questions here. | ||
- name: Documentation | ||
url: https://kyverno.github.io/kyverno-envoy-plugin | ||
about: Browse documentation here. |
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,35 @@ | ||
# Release docs | ||
|
||
This doc contains information for releasing a new version. | ||
|
||
## Create a release | ||
|
||
Creating a release can be done by pushing a tag to the GitHub repository (beginning with `v`). | ||
|
||
The [release workflow](../../.github/workflows/release.yaml) will take care of creating the GitHub release and will publish artifacts. | ||
|
||
```shell | ||
VERSION="v0.0.1" | ||
TAG=$VERSION | ||
|
||
git tag $TAG -m "tag $TAG" -a | ||
git push origin $TAG | ||
``` | ||
|
||
## Publish documentation | ||
|
||
Publishing the documentation for a release is decoupled from cutting a release. | ||
|
||
To publish the documentation push a tag to the GitHub repository (beginning with `docs-v`). | ||
|
||
```shell | ||
VERSION="v0.0.1" | ||
TAG=docs-$VERSION | ||
|
||
git tag $TAG -m "tag $TAG" -a | ||
git push origin $TAG | ||
``` | ||
|
||
## Misc | ||
|
||
- Add to the drop-down list in the bug template |