Skip to content

Commit 055523e

Browse files
authored
fix: avoid sync-tags job when no updates are committed (#184)
1 parent dc76477 commit 055523e

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

.github/workflows/scheduled-jobs.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -108,7 +108,7 @@ jobs:
108108
name: Synchronize tags with kubernetes
109109
runs-on: ubuntu-latest
110110
needs: update-schemas
111-
if: github.repository == 'CustomResourceDefinition/catalog' && github.ref == 'refs/heads/main' && needs.update-schemas.outputs.updated
111+
if: github.repository == 'CustomResourceDefinition/catalog' && github.ref == 'refs/heads/main' && needs.update-schemas.outputs.updated == 'true'
112112
permissions:
113113
contents: write
114114
steps:

0 commit comments

Comments
 (0)