Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 4 additions & 4 deletions .github/workflows/merge-prometheus.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -20,8 +20,7 @@ jobs:
downstream: openshift/prometheus
sandbox: rhobs/prometheus
restore-downstream: >-
plugins.yml
plugins
.github/PULL_REQUEST_TEMPLATE.md
restore-upstream: >-
CHANGELOG.md
VERSION
Expand All @@ -33,8 +32,9 @@ jobs:
# The git diff relies on gits remote naming. The merge-flow checks out
# $downstream as origin at the time of writing this code.
if ! git diff --exit-code origin/main web/ui; then
make assets-compress
find web/ui/static -type f -name '*.gz' -exec git add {} \;
# Only build the Mantine UI.
BUILD_UI=mantine make assets-compress
find web/ui/static/mantine-ui -type f -name '*.gz' -exec git add {} \;
git add web/ui/embed.go
git diff --cached --exit-code || git commit -s -m "[bot] assets: generate"
fi
Expand Down
Loading