more patching (#8787)

This commit is contained in:
matt korwel
2025-09-18 18:22:54 -07:00
committed by GitHub
parent b14a4f5ebc
commit bfa4140593
4 changed files with 18 additions and 0 deletions

View File

@@ -149,3 +149,12 @@ runs:
--title "Release ${{ inputs.release-tag }}" \
--notes-start-tag "${{ inputs.previous-tag }}" \
--generate-notes
- name: '🧹 Clean up release branch'
working-directory: '${{ inputs.working-directory }}'
if: "${{ inputs.dry-run == 'false' }}"
continue-on-error: true
shell: 'bash'
run: |
echo "Cleaning up release branch ${{ steps.release_branch.outputs.BRANCH_NAME }}..."
git push origin --delete "${{ steps.release_branch.outputs.BRANCH_NAME }}"

View File

@@ -14,6 +14,11 @@ on:
types: ['labeled']
merge_group:
concurrency:
group: '${{ github.workflow }}-${{ github.head_ref || github.ref }}'
cancel-in-progress: |-
${{ github.ref != 'refs/heads/main' && !startsWith(github.ref, 'refs/heads/release/') }}
jobs:
merge_queue_skipper:
name: 'Merge Queue Skipper'

View File

@@ -87,4 +87,5 @@ jobs:
REPOSITORY: '${{ github.repository }}'
GITHUB_RUN_ID: '${{ github.run_id }}'
run: |
git checkout '${{ github.event.inputs.ref }}'
node scripts/releasing/patch-create-comment.js

3
.gitignore vendored
View File

@@ -49,3 +49,6 @@ packages/vscode-ide-companion/*.vsix
# GHA credentials
gha-creds-*.json
# Log files
patch_output.log