-
Notifications
You must be signed in to change notification settings - Fork 361
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' of github.com:envoyproxy/gateway into udef-gw-add…
…r/external-ips
- Loading branch information
Showing
112 changed files
with
10,891 additions
and
123 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,29 @@ | ||
on: | ||
pull_request: | ||
branches: | ||
- main | ||
types: ["closed"] | ||
|
||
jobs: | ||
cherry_pick_release_v0_4: | ||
runs-on: ubuntu-latest | ||
name: Cherry pick into release-v0.4 | ||
if: ${{ contains(github.event.pull_request.labels.*.name, 'cherrypick/release-v0.4') && github.event.pull_request.merged == true }} | ||
steps: | ||
- name: Checkout | ||
uses: actions/checkout@v3 | ||
with: | ||
fetch-depth: 0 | ||
- name: Cherry pick into release/v0.4 | ||
uses: carloscastrojumo/[email protected] | ||
with: | ||
branch: release/v0.4 | ||
title: "[release/v0.4] {old_title}" | ||
body: "Cherry picking #{old_pull_request_id} onto release/v0.4" | ||
labels: | | ||
cherrypick/release-v0.4 | ||
# put release manager here | ||
reviewers: | | ||
AliceProxy | ||
env: | ||
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} |
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 |
---|---|---|
|
@@ -63,4 +63,4 @@ jobs: | |
steps: | ||
- name: Deploy to GitHub Pages | ||
id: deployment | ||
uses: actions/[email protected].0 | ||
uses: actions/[email protected].1 |
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 +1 @@ | ||
v0.4.0-rc.1 | ||
v0.4.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
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
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 |
---|---|---|
@@ -1,5 +1,5 @@ | ||
<html> | ||
<head> | ||
<meta http-equiv="refresh" content="0; url=/v0.3.0"> | ||
<meta http-equiv="refresh" content="0; url=/v0.4.0"> | ||
</head> | ||
</html> |
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 |
---|---|---|
|
@@ -68,6 +68,37 @@ export GITHUB_REMOTE=origin | |
18. Ensure you check the "This is a pre-release" checkbox when editing the GitHub release. | ||
19. If you find any bugs in this process, please create an issue. | ||
|
||
### Setup cherry picker action | ||
|
||
After release branch cut, RM (Release Manager) should add job [cherrypick action](../../../.github/workflows/cherrypick.yaml) for target release. | ||
|
||
Configuration looks like following: | ||
|
||
```yaml | ||
cherry_pick_release_v0_4: | ||
runs-on: ubuntu-latest | ||
name: Cherry pick into release-v0.4 | ||
if: ${{ contains(github.event.pull_request.labels.*.name, 'cherrypick/release-v0.4') && github.event.pull_request.merged == true }} | ||
steps: | ||
- name: Checkout | ||
uses: actions/checkout@v3 | ||
with: | ||
fetch-depth: 0 | ||
- name: Cherry pick into release/v0.4 | ||
uses: carloscastrojumo/[email protected] | ||
with: | ||
branch: release/v0.4 | ||
title: "[release/v0.4] {old_title}" | ||
body: "Cherry picking #{old_pull_request_id} onto release/v0.4" | ||
labels: | | ||
cherrypick/release-v0.4 | ||
# put release manager here | ||
reviewers: | | ||
AliceProxy | ||
``` | ||
|
||
Replace `v0.4` with real branch name, and `AliceProxy` with the real name of RM. | ||
|
||
## Minor Release | ||
|
||
The following steps should be used for creating a minor release. | ||
|
@@ -93,7 +124,8 @@ export GITHUB_REMOTE=origin | |
notes should be an accumulation of the release candidate release notes and any changes since the release | ||
candidate. | ||
2. Create a release announcement. Refer to [PR #635] as an example release announcement. | ||
3. Generate the versioned release docs: | ||
3. Include the release in the compatibility matrix. Refer to [PR #1002] as an example. | ||
4. Generate the versioned release docs: | ||
|
||
``` shell | ||
make docs-release TAG=v${MAJOR_VERSION}.${MINOR_VERSION} | ||
|
@@ -192,4 +224,5 @@ It's important that the world knows about the release. Use the following steps t | |
[Generate]: https://docs.github.com/en/repositories/releasing-projects-on-github/automatically-generated-release-notes | ||
[PR #635]: https://github.com/envoyproxy/gateway/pull/635 | ||
[PR #958]: https://github.com/envoyproxy/gateway/pull/958 | ||
[PR #1002]: https://github.com/envoyproxy/gateway/pull/1002 | ||
[VERSION]: https://github.com/envoyproxy/gateway/blob/main/VERSION |
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 |
---|---|---|
|
@@ -9,3 +9,4 @@ Learn more about Envoy Gateway releases. | |
releases/README | ||
releases/v0.2 | ||
releases/v0.3 | ||
releases/v0.4 |
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
Oops, something went wrong.