Skip to content
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.

Commit 19260a7

Browse files
authoredMay 16, 2022
Merge branch 'master' into CI_unit_tests
2 parents acb6aee + ba6e82c commit 19260a7

File tree

74 files changed

+858
-496
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

74 files changed

+858
-496
lines changed
 

‎.github/ISSUE_TEMPLATE/Issue-report.yml

+2-1
Original file line numberDiff line numberDiff line change
@@ -41,6 +41,7 @@ body:
4141
options:
4242
- latest master (checkout manually)
4343
- latest development Release Candidate (RC-X)
44+
- v2.0.3
4445
- v2.0.2
4546
- v2.0.1
4647
- v2.0.0
@@ -129,4 +130,4 @@ body:
129130
description: You agree to check all the resources above before opening a new issue.
130131
options:
131132
- label: I confirm I have checked existing issues, online documentation and Troubleshooting guide.
132-
required: true
133+
required: true

‎.github/workflows/hil.yml

+4-2
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ jobs:
1818
gen_chunks:
1919
if: |
2020
contains(github.event.pull_request.labels.*.name, 'hil_test') ||
21-
github.event_name == 'schedule'
21+
(github.event_name == 'schedule' && github.repository == 'espressif/arduino-esp32')
2222
name: Generate Chunks matrix
2323
runs-on: ubuntu-latest
2424
outputs:
@@ -110,7 +110,9 @@ jobs:
110110

111111
event_file:
112112
name: "Event File"
113-
if: ${{ always() }}
113+
if: |
114+
contains(github.event.pull_request.labels.*.name, 'hil_test') ||
115+
github.event_name == 'schedule'
114116
needs: Test
115117
runs-on: ubuntu-latest
116118
steps:

0 commit comments

Comments
 (0)
Please sign in to comment.