We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 0ff049d commit 539f769Copy full SHA for 539f769
.github/workflows/marketplace-publish.yml
@@ -1,7 +1,7 @@
1
name: Publish Extension
2
on:
3
pull_request:
4
- types: [closed]
+ types: [closed, labeled]
5
workflow_dispatch:
6
7
env:
@@ -16,8 +16,7 @@ jobs:
16
if: >
17
( github.event_name == 'pull_request' &&
18
github.event.pull_request.base.ref == 'main' &&
19
- contains(github.event.pull_request.title, 'Changeset version bump') ) ||
20
- github.event_name == 'workflow_dispatch'
+ github.event.label.name == 'publish' )
21
steps:
22
- uses: actions/checkout@v4
23
with:
0 commit comments