extension_ci: Ensure version bump does not happen too often (#50108)

Finn Evers created

Sigh....

Release Notes:

- N/A

Change summary

extensions/workflows/shared/bump_version.yml                 | 2 +-
tooling/xtask/src/tasks/workflows/extensions/bump_version.rs | 2 +-
2 files changed, 2 insertions(+), 2 deletions(-)

Detailed changes

extensions/workflows/shared/bump_version.yml 🔗

@@ -52,7 +52,7 @@ jobs:
       app-secret: ${{ secrets.ZED_ZIPPY_APP_PRIVATE_KEY }}
     with:
       bump-type: ${{ needs.determine_bump_type.outputs.bump_type }}
-      force-bump: true
+      force-bump: ${{ github.event_name != 'push' }}
 concurrency:
   group: ${{ github.workflow }}-${{ github.ref_name }}-${{ github.ref_name == 'main' && github.sha || 'anysha' }}labels
   cancel-in-progress: true