-
Notifications
You must be signed in to change notification settings - Fork 722
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
[release-v2.8] Charts release validation 2.8 (#4427)
just a propagation
- Loading branch information
1 parent
a2420a7
commit 27efdd0
Showing
5 changed files
with
60 additions
and
8 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,28 @@ | ||
name: Charts-Release-Validations | ||
|
||
on: | ||
pull_request: | ||
branches: | ||
- release-v* | ||
|
||
jobs: | ||
build: | ||
name: Checkpoint 0 - release.yaml validation | ||
runs-on: ubuntu-latest | ||
steps: | ||
- name: Checkout base branch | ||
uses: actions/checkout@v4 | ||
|
||
- name: Checkout PR | ||
run: gh pr checkout ${{ github.event.pull_request.number }} | ||
env: | ||
GH_TOKEN: ${{ secrets.GITHUB_TOKEN }} | ||
|
||
- name: Checkout into branch | ||
run: git checkout -b staging-pr-workflow | ||
|
||
- name: Pull scripts | ||
run: make pull-scripts | ||
|
||
- name: Validate Charts Release | ||
run: make validate-release-charts BRANCH=${{ github.event.pull_request.base.ref }} GH_TOKEN=${{ secrets.GITHUB_TOKEN }} PR_NUMBER=${{ github.event.pull_request.number }} |
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,6 +1 @@ | ||
rancher-webhook: | ||
- 103.0.9+up0.4.10 | ||
rancher-backup: | ||
- 103.0.3+up4.0.3 | ||
rancher-backup-crd: | ||
- 103.0.3+up4.0.3 | ||
|
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,29 @@ | ||
{ | ||
"prod-branch-prefix": "release-v", | ||
"dev-branch-prefix": "dev-v", | ||
"rules": { | ||
"2.10": { | ||
"min": "105.0.0", | ||
"max": "106.0.0" | ||
}, | ||
"2.9": { | ||
"min": "104.0.0", | ||
"max": "105.0.0" | ||
}, | ||
"2.8": { | ||
"min": "103.0.0", | ||
"max": "104.0.0" | ||
}, | ||
"2.7": { | ||
"min": "101.0.0", | ||
"max": "103.0.0" | ||
}, | ||
"2.6": { | ||
"min": "100.0.0", | ||
"max": "101.0.0" | ||
}, | ||
"2.5": { | ||
"max": "100.0.0" | ||
} | ||
} | ||
} |