Skip to content

Commit 0a3d15a

Browse files
Merge pull request #116 from rhobs/coleenquadros-patch-3
Refactor asset handling and update Node for Prometheus syncbot
2 parents c54b870 + c5825b0 commit 0a3d15a

File tree

2 files changed

+6
-6
lines changed

2 files changed

+6
-6
lines changed

.github/workflows/merge-acm-flow.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ on:
44
inputs:
55
node-version:
66
description: node version
7-
default: '16'
7+
default: '22'
88
required: false
99
type: string
1010
go-version:

.github/workflows/merge-acm-prometheus.yaml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -20,23 +20,23 @@ jobs:
2020
downstream: stolostron/prometheus
2121
sandbox: rhobs/acm-prometheus
2222
go-version: "1.24"
23+
restore-downstream: >-
24+
plugins.yml
25+
plugins
2326
restore-upstream: >-
2427
CHANGELOG.md
2528
VERSION
2629
go.mod
2730
go.sum
2831
.golangci.yml
29-
discovery
30-
promql
31-
storage
3232
assets-cmd: |
3333
# Only compress assets if assets actually changed
3434
# The git diff relies on gits remote naming. The merge-flow checks out
3535
# $downstream as origin at the time of writing this code.
3636
if ! git diff --exit-code origin/main web/ui; then
3737
make assets-compress
38-
find web/ui/static -type f -name '*.gz' -exec git add -f {} \;
39-
git add -f web/ui/embed.go
38+
find web/ui/static -type f -name '*.gz' -exec git add {} \;
39+
git add web/ui/embed.go
4040
git diff --cached --exit-code || git commit -s -m "[bot] assets: generate"
4141
fi
4242

0 commit comments

Comments
 (0)