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 cb61ced commit b822c75Copy full SHA for b822c75
.github/workflows/build.yml
@@ -5,6 +5,7 @@ on:
5
# branches:
6
# - main
7
pull_request:
8
+ types: [opened, synchronize, reopened, labeled]
9
workflow_dispatch:
10
11
concurrency:
@@ -14,6 +15,7 @@ concurrency:
14
15
jobs:
16
common:
17
uses: ./.github/workflows/build-common.yml
18
+ if: ${{ github.event_name == 'workflow_dispatch' || contains(github.event.pull_request.labels.*.name, 'build') }}
19
20
required-status-check:
21
needs:
0 commit comments