File tree Expand file tree Collapse file tree 2 files changed +7
-4
lines changed
Expand file tree Collapse file tree 2 files changed +7
-4
lines changed Original file line number Diff line number Diff line change @@ -3,8 +3,11 @@ name: CI
33on :
44 pull_request :
55 push :
6- workflow_dispatch :
6+ branches-ignore :
7+ - " gh-readonly-queue/**"
8+ - " main"
79 merge_group :
10+ workflow_dispatch :
811
912env :
1013 CARGO_TERM_COLOR : always
Original file line number Diff line number Diff line change @@ -2,7 +2,8 @@ name: HIL
22
33on :
44 pull_request :
5- push :
5+ types : [opened, synchronize, reopened, ready_for_review]
6+ merge_group :
67 workflow_dispatch :
78 inputs :
89 repository :
1314 description : " Branch, tag or SHA to checkout."
1415 required : true
1516 default : " main"
16- merge_group :
1717
1818env :
1919 CARGO_TERM_COLOR : always
@@ -100,7 +100,7 @@ jobs:
100100 ESPFLASH_APP : espflash/resources/apps/${{ matrix.board.mcu }}
101101 shell : bash
102102 run : |
103- result=$(espflash_app/espflash flash ${{ env.ESPFLASH_APP }} 2>&1)
103+ result=$(espflash_app/espflash flash --no-skip ${{ env.ESPFLASH_APP }} 2>&1)
104104 echo "$result"
105105 if [[ ! $result =~ "Flashing has completed!" ]]; then
106106 exit 1
You can’t perform that action at this time.
0 commit comments