This repository has been archived by the owner on Jul 31, 2024. It is now read-only.
-
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.
- Loading branch information
Showing
1 changed file
with
93 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 |
---|---|---|
|
@@ -82,3 +82,96 @@ jobs: | |
with: | ||
message: "Please apply one of the following labels to the PR: 'patch', 'minor', 'major'." | ||
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | ||
|
||
prepare-release: | ||
needs: ["check-labels", "comment"] | ||
|
||
runs-on: ubuntu-latest | ||
|
||
steps: | ||
- uses: actions/checkout@v3 | ||
with: | ||
fetch-depth: 0 | ||
|
||
- id: bump | ||
uses: zwaldowski/match-label-action@v4 | ||
with: | ||
allowed: major,minor,patch | ||
|
||
- name: Get changed files | ||
id: changed-files | ||
uses: tj-actions/[email protected] | ||
|
||
|
||
# prepare yaml parser | ||
- uses: actions/setup-go@v4 | ||
- name: Install yq | ||
run: | | ||
go install github.com/mikefarah/yq/v4@latest | ||
yq --version | ||
- uses: actions/checkout@v3 | ||
with: | ||
ref: ${{ github.head_ref }} | ||
|
||
- name: Update versions | ||
shell: bash | ||
run: | | ||
declare -A changedCharts | ||
for file in ${{ steps.changed-files.outputs.all_changed_and_modified_files }}; do | ||
echo "$file was changed" | ||
baseFolder=$(cut -d'/' -f1 <<< "$file") | ||
if [ $baseFolder = "charts" ]; then | ||
chartName=$(cut -d'/' -f2 <<< "$file") | ||
changedCharts[$chartName]=$chartName | ||
fi | ||
done | ||
for c in "${changedCharts[@]}"; do | ||
# get version from chart yaml | ||
version=$(yq e '.version' "charts/$c/Chart.yaml") | ||
major=$(cut -d'.' -f1 <<< "$version") | ||
minor=$(cut -d'.' -f2 <<< "$version") | ||
patch=$(cut -d'.' -f3 <<< "$version") | ||
prType=${{ steps.bump.outputs.match }} | ||
echo Update version $version with type $prType | ||
if [ $prType = "major" ]; then | ||
echo Update major | ||
major=$((major+1)) | ||
minor=0 | ||
patch=0 | ||
elif [ $prType = "minor" ]; then | ||
echo Update minor | ||
minor=$((minor+1)) | ||
patch=0 | ||
elif [ $prType = "patch" ]; then | ||
echo Update patch | ||
patch=$((patch+1)) | ||
fi | ||
echo Update version to $major.$minor.$patch for $c | ||
yq e -i '.version = "'$major.$minor.$patch'"' charts/$c/Chart.yaml | ||
done | ||
- name: generate docs | ||
run: | ||
docker run --rm --volume "$(pwd):/helm-docs" -u $(id -u) jnorwood/helm-docs:latest | ||
|
||
- name: Commit files | ||
continue-on-error: true | ||
run: | | ||
git config --local user.email "41898282+github-actions[bot]@users.noreply.github.com" | ||
git config --local user.name "github-actions[bot]" | ||
git status | ||
echo commit | ||
git commit -m "Update helm documentation" -a | ||
echo status update | ||
git status | ||
- name: Push changes | ||
continue-on-error: true | ||
uses: ad-m/github-push-action@master | ||
with: | ||
branch: ${{ github.head_ref }} |