forked from envoyproxy/gateway
-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request envoyproxy#3 from danehans/lizan_authn_policy_doc_…
…update Rebases Resolves Review Feedback
- Loading branch information
Showing
346 changed files
with
16,020 additions
and
1,613 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,52 @@ | ||
{ | ||
"MD001": true, | ||
"MD002": false, | ||
"MD003": false, | ||
"MD004": false, | ||
"MD005": false, | ||
"MD006": false, | ||
"MD007": false, | ||
"MD008": false, | ||
"MD009": false, | ||
"MD010": false, | ||
"MD011": false, | ||
"MD012": false, | ||
"MD013": false, | ||
"MD014": false, | ||
"MD015": false, | ||
"MD016": false, | ||
"MD017": false, | ||
"MD018": false, | ||
"MD019": false, | ||
"MD020": false, | ||
"MD021": false, | ||
"MD022": false, | ||
"MD023": false, | ||
"MD024": false, | ||
"MD025": false, | ||
"MD026": false, | ||
"MD027": false, | ||
"MD028": false, | ||
"MD029": false, | ||
"MD030": false, | ||
"MD031": true, | ||
"MD032": false, | ||
"MD033": false, | ||
"MD034": false, | ||
"MD035": false, | ||
"MD036": false, | ||
"MD037": true, | ||
"MD038": true, | ||
"MD039": false, | ||
"MD040": false, | ||
"MD041": false, | ||
"MD042": false, | ||
"MD043": false, | ||
"MD044": false, | ||
"MD045": false, | ||
"MD046": false, | ||
"MD047": false, | ||
"MD048": false, | ||
"MD049": false, | ||
"MD050": false | ||
} |
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
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,51 @@ | ||
name: Latest Release | ||
|
||
on: | ||
push: | ||
branches: | ||
- "main" | ||
paths-ignore: | ||
- "**/*.png" | ||
|
||
jobs: | ||
latest-release: | ||
runs-on: ubuntu-latest | ||
steps: | ||
- uses: actions/checkout@v3 | ||
|
||
- name: Generate Release Manifests | ||
run: make generate-manifests IMAGE=envoyproxy/gateway-dev TAG=latest OUTPUT_DIR=release-artifacts | ||
|
||
# Ignore the error when we delete the latest release, it might not exist. | ||
- name: Delete the Latest Release | ||
continue-on-error: true | ||
run: | | ||
gh release delete latest --repo $GITHUB_REPOSITORY | ||
env: | ||
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | ||
GITHUB_REPOSITORY: ${{ github.repository_owner }}/${{ github.event.repository.name }} | ||
|
||
# Ignore the error when we delete the latest tag, it might not exist. | ||
- name: Delete the Latest Tag | ||
continue-on-error: true | ||
run: | ||
gh api --method DELETE /repos/$GITHUB_REPOSITORY/git/refs/tags/latest | ||
env: | ||
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | ||
GITHUB_REPOSITORY: ${{ github.repository_owner }}/${{ github.event.repository.name }} | ||
|
||
- name: Recreate the Latest Release and Tag | ||
uses: softprops/action-gh-release@v1 | ||
with: | ||
draft: false | ||
prerelease: true | ||
tag_name: latest | ||
files: | | ||
release-artifacts/install.yaml | ||
release-artifacts/quickstart.yaml | ||
body: | | ||
This is the "latest" release of **Envoy Gateway**, which contains the most recent commits from the main branch. | ||
This release **might not be stable**. | ||
It is only intended for developers wishing to try out the latest features in Envoy Gateway, some of which may not be fully implemented. |
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
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,46 @@ | ||
run: | ||
deadline: 10m | ||
|
||
linters: | ||
enable: | ||
- bodyclose | ||
- gofmt | ||
- goimports | ||
- revive | ||
- gosec | ||
- misspell | ||
- scopelint | ||
- unconvert | ||
- unparam | ||
- goheader | ||
- gocritic | ||
|
||
linters-settings: | ||
gofmt: | ||
simplify: true | ||
unparam: | ||
check-exported: false | ||
goheader: | ||
# Note that because the format is different (this needs no comment markers), | ||
# updating this text means also updating /tools/boilerplate.txt so that | ||
# `make generate` will update the generated files correctly. | ||
template: |- | ||
Copyright Envoy Gateway Authors | ||
SPDX-License-Identifier: Apache-2.0 | ||
The full text of the Apache license is available in the LICENSE file at | ||
the root of the repo. | ||
issues: | ||
exclude-rules: | ||
- path: zz_generated | ||
linters: | ||
- goimports | ||
- linters: | ||
- staticcheck | ||
text: "SA1019:" | ||
- path: test/e2e | ||
linters: | ||
- bodyclose | ||
# Show the complete output | ||
max-issues-per-linter: 0 | ||
max-same-issues: 0 |
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 |
---|---|---|
@@ -1,3 +1,3 @@ | ||
# The following owners, listed in alphabetical order, own everything | ||
# in the repo. | ||
* @alexgervais @arkodg @danehans @LukeShu @skriss @youngnick | ||
* @AliceProxy @arkodg @danehans @LukeShu @skriss @Xunzhuo @youngnick |
Oops, something went wrong.