Skip to content

Commit a5d7138

Browse files
authored
Auto run the bump version workflow (#57)
Makes the bump version github action run automatically after a release
2 parents 57892a2 + bc1e6d5 commit a5d7138

File tree

1 file changed

+5
-0
lines changed

1 file changed

+5
-0
lines changed

.github/workflows/bump-version.yml

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,10 +2,15 @@ name: Bump version
22

33
on:
44
workflow_dispatch:
5+
workflow_run:
6+
workflows: ["Upload VSCode packages"]
7+
types: [completed]
8+
branches: [main]
59

610
jobs:
711
bump-patch:
812
runs-on: ubuntu-latest
13+
if: ${{ github.event.workflow_run.conclusion == 'success' }}
914
steps:
1015
- uses: actions/checkout@v4
1116
- name: Install Node.js

0 commit comments

Comments
 (0)