mirror of
https://github.com/zed-industries/zed.git
synced 2026-06-01 03:14:56 +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 }}
|
app-secret: ${{ secrets.ZED_ZIPPY_APP_PRIVATE_KEY }}
|
||||||
with:
|
with:
|
||||||
bump-type: ${{ needs.determine_bump_type.outputs.bump_type }}
|
bump-type: ${{ needs.determine_bump_type.outputs.bump_type }}
|
||||||
force-bump: true
|
force-bump: ${{ github.event_name != 'push' }}
|
||||||
concurrency:
|
concurrency:
|
||||||
group: ${{ github.workflow }}-${{ github.ref_name }}-${{ github.ref_name == 'main' && github.sha || 'anysha' }}labels
|
group: ${{ github.workflow }}-${{ github.ref_name }}-${{ github.ref_name == 'main' && github.sha || 'anysha' }}labels
|
||||||
cancel-in-progress: true
|
cancel-in-progress: true
|
||||||
|
|
|
||||||
|
|
@ -57,7 +57,7 @@ pub(crate) fn call_bump_version(
|
||||||
.with(
|
.with(
|
||||||
Input::default()
|
Input::default()
|
||||||
.add("bump-type", bump_type.to_string())
|
.add("bump-type", bump_type.to_string())
|
||||||
.add("force-bump", true),
|
.add("force-bump", "${{ github.event_name != 'push' }}"),
|
||||||
)
|
)
|
||||||
.with_app_secrets();
|
.with_app_secrets();
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue