File tree Expand file tree Collapse file tree 8 files changed +22
-13
lines changed
Expand file tree Collapse file tree 8 files changed +22
-13
lines changed Original file line number Diff line number Diff line change 2020 upstream : prometheus/alertmanager
2121 downstream : stolostron/prometheus-alertmanager
2222 sandbox : rhobs/acm-prometheus-alertmanager
23- go-version : " 1.22 "
23+ go-version : " 1.23 "
2424 restore-upstream : >-
2525 CHANGELOG.md
2626 VERSION
4242 pr-app-private-key : ${{ secrets.ACM_APP_PRIVATE_KEY }}
4343 cloner-app-id : ${{ secrets.ACM_CLONER_APP_ID }}
4444 cloner-app-private-key : ${{ secrets.ACM_CLONER_APP_PRIVATE_KEY }}
45- slack-webhook-url : ${{ secrets.ACM_SLACK_WEBHOOK_URL }}
45+ slack-webhook-url : ${{ secrets.ACM_SLACK_WEBHOOK_URL }}
Original file line number Diff line number Diff line change 2222 downstream-branch :
2323 description : Downstream branch to create PR
2424 required : false
25- default : release-2.12
25+ default : release-2.14
2626 type : string
2727 sandbox :
2828 description : Sandbox repo path in owner/repo format. Used as a base to create PR against downstream.
@@ -170,15 +170,18 @@ jobs:
170170 - name : Continue after merge conflict
171171 if : ${{ steps.merge.outputs.MERGE_CONFLICT == 'true' }}
172172 run : git merge --continue
173- - name : Add VERSION file if not present
173+ - name : Add or update VERSION file
174174 run : |
175175 # All tags use the vX.Y.Z format currently.
176176 version_from_tag=$(echo ${{ steps.upstream.outputs.release }} | sed -e "s/^v//")
177177 if [ -f VERSION ]; then
178178 version_from_file=$(cat VERSION)
179179 if [ "$version_from_tag" != "$version_from_file" ];then
180- echo "::error:: tag version ${version_from_tag} doesn't correspond to version ${version_from_file} from VERSION file"
181- exit 1
180+ echo "Updating version file to ${version_from_tag}"
181+ echo "$version_from_tag" > VERSION
182+ git add VERSION
183+ git diff --cached --exit-code || git commit -s -m "[bot] update VERSION file with ${version_from_tag}"
184+ exit 0
182185 fi
183186 echo "::notice::VERSION file already present"
184187 exit 0
Original file line number Diff line number Diff line change @@ -19,12 +19,13 @@ jobs:
1919 upstream : grafana/grafana
2020 downstream : stolostron/grafana
2121 sandbox : rhobs/acm-grafana
22- go-version : " 1.22 "
23- node-version : " 20 "
22+ go-version : " 1.23 "
23+ node-version : " 22 "
2424 go-mod-tidy : false
2525 restore-downstream : >-
2626 OWNERS
2727 restore-upstream : >-
28+ .betterer.results
2829 .drone.yml
2930 CHANGELOG.md
3031 docs
@@ -33,11 +34,13 @@ jobs:
3334 go.work
3435 go.work.sum
3536 pkg
37+ scripts
3638 lerna.json
3739 package.json
3840 packages
3941 public/app/
4042 yarn.lock
43+ SECURITY.md
4144 assets-cmd : |
4245 # get rid of old assets as new filenames are generated
4346 rm -rf ./public/build/
Original file line number Diff line number Diff line change 2020 upstream : kubernetes/kube-state-metrics
2121 downstream : stolostron/kube-state-metrics
2222 sandbox : rhobs/acm-kube-state-metrics
23- go-version : " 1.21 "
23+ go-version : " 1.23 "
2424 restore-upstream : >-
2525 CHANGELOG.md
2626 VERSION
Original file line number Diff line number Diff line change 1919 upstream : prometheus/node_exporter
2020 downstream : stolostron/node-exporter
2121 sandbox : rhobs/acm-node-exporter
22- go-version : " 1.21 "
22+ go-version : " 1.23 "
2323 restore-downstream : >-
2424 OWNERS
2525 restore-upstream : >-
Original file line number Diff line number Diff line change 1919 upstream : prometheus-operator/prometheus-operator
2020 downstream : stolostron/prometheus-operator
2121 sandbox : rhobs/acm-prometheus-operator
22- go-version : " 1.21 "
22+ go-version : " 1.23 "
2323 restore-upstream : >-
2424 CHANGELOG.md
2525 Documentation
Original file line number Diff line number Diff line change @@ -19,13 +19,16 @@ jobs:
1919 upstream : prometheus/prometheus
2020 downstream : stolostron/prometheus
2121 sandbox : rhobs/acm-prometheus
22- go-version : " 1.21 "
22+ go-version : " 1.23 "
2323 restore-upstream : >-
2424 CHANGELOG.md
2525 VERSION
2626 go.mod
2727 go.sum
2828 .golangci.yml
29+ discovery
30+ promql
31+ storage
2932 assets-cmd : |
3033 # Only compress assets if assets actually changed
3134 # The git diff relies on gits remote naming. The merge-flow checks out
Original file line number Diff line number Diff line change 1919 upstream : thanos-io/thanos
2020 downstream : stolostron/thanos
2121 sandbox : rhobs/acm-thanos
22- go-version : " 1.22 "
22+ go-version : " 1.23 "
2323 restore-downstream : >-
2424 OWNERS
2525 restore-upstream : >-
You can’t perform that action at this time.
0 commit comments