mirror of
https://github.com/zed-industries/zed.git
synced 2026-05-31 19:05:00 +07:00
extension_ci: Ensure version bump does not happen too often (#50108)
Sigh.... Release Notes: - N/A
This commit is contained in:
parent
21fdf703e8
commit
c40cc0cd6e
2 changed files with 2 additions and 2 deletions
|
|
@ -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
|
||||
|
|
|
|||
|
|
@ -57,7 +57,7 @@ pub(crate) fn call_bump_version(
|
|||
.with(
|
||||
Input::default()
|
||||
.add("bump-type", bump_type.to_string())
|
||||
.add("force-bump", true),
|
||||
.add("force-bump", "${{ github.event_name != 'push' }}"),
|
||||
)
|
||||
.with_app_secrets();
|
||||
|
||||
|
|
|
|||
Loading…
Reference in a new issue