diff --git a/.github/workflows/bump_version.yml b/.github/workflows/bump_version.yml index 49aca67..bbf7e9b 100644 --- a/.github/workflows/bump_version.yml +++ b/.github/workflows/bump_version.yml @@ -28,7 +28,6 @@ jobs: bump_type="patch" fi echo "bump_type=$bump_type" >> $GITHUB_OUTPUT - shell: bash -euxo pipefail {0} env: HAS_MAJOR_LABEL: |- ${{ (github.event.action == 'labeled' && github.event.label.name == 'major') || @@ -57,3 +56,6 @@ jobs: concurrency: group: ${{ github.workflow }}-${{ github.ref_name }}-${{ github.ref_name == 'main' && github.sha || 'anysha' }}labels cancel-in-progress: true +defaults: + run: + shell: bash -euxo pipefail {0} diff --git a/.github/workflows/release_version.yml b/.github/workflows/release_version.yml deleted file mode 100644 index 623ec04..0000000 --- a/.github/workflows/release_version.yml +++ /dev/null @@ -1,16 +0,0 @@ -# Generated from xtask::workflows::extensions::release_version within the Zed repository. -# Rebuild with `cargo xtask workflows`. -name: extensions::release_version -on: - push: - tags: - - v** -jobs: - call_release_version: - permissions: - contents: write - pull-requests: write - uses: zed-industries/zed/.github/workflows/extension_release.yml@main - secrets: - app-id: ${{ secrets.ZED_ZIPPY_APP_ID }} - app-secret: ${{ secrets.ZED_ZIPPY_APP_PRIVATE_KEY }}