We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 773bd8f commit d2a3315Copy full SHA for d2a3315
1 file changed
.github/workflows/operator-release-make-bundle.yaml
@@ -47,17 +47,14 @@ jobs:
47
- name: Check for changes
48
id: changes
49
run: |
50
- if [ -z "$(git status --porcelain)" ]; then
51
- echo "No bundle changes to commit"
+ git add -A
+ if git diff --cached --quiet; then
52
echo "has_changes=false" >> "$GITHUB_OUTPUT"
53
+ echo "No chart changes to commit"
54
else
55
echo "has_changes=true" >> "$GITHUB_OUTPUT"
56
fi
57
- - name: Stage all bundle changes
58
- if: steps.changes.outputs.has_changes == 'true'
59
- run: git add -A
60
-
61
# Commits made via the GitHub API are automatically signed by GitHub
62
- name: Commit bundle (signed via GitHub API)
63
if: steps.changes.outputs.has_changes == 'true'
0 commit comments