We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent bddf692 commit fe20ae0Copy full SHA for fe20ae0
.github/workflows/hil.yml
@@ -1,7 +1,7 @@
1
name: Run tests
2
3
on:
4
- pull_request:
+ pull_request_target:
5
types: [opened, reopened, synchronize, labeled]
6
7
schedule:
@@ -10,15 +10,14 @@ on:
10
env:
11
MAX_CHUNKS: 15
12
WOKWI_TIMEOUT: 120000 # Milliseconds
13
- WOKWI_CLI_TOKEN: ${{ secrets.WOKWI_CLI_TOKEN }}
14
15
concurrency:
16
group: hil-${{github.event.pull_request.number || github.ref}}
17
cancel-in-progress: true
18
19
jobs:
20
gen_chunks:
21
- if: github.repository == 'espressif/arduino-esp32'
+ if: github.repository == 'espressif/arduino-esp32' || contains(github.event.pull_request.labels.*.name, 'run_tests')
22
name: Generate Chunks matrix
23
runs-on: ubuntu-latest
24
outputs:
0 commit comments