Skip to content

Commit 30508e4

Browse files
authored
Re-validate submodules when labels are modified (#37101)
* Re-validate submodules when labels are modified * Reformat help text
1 parent c7024d3 commit 30508e4

File tree

2 files changed

+4
-2
lines changed

2 files changed

+4
-2
lines changed

.github/workflows/third-party-check.yaml

+2-1
Original file line numberDiff line numberDiff line change
@@ -21,6 +21,7 @@ on:
2121
paths:
2222
- "third_party/**"
2323
- ".gitmodules"
24+
types: [opened, synchronize, reopened, labeled, unlabeled]
2425

2526
jobs:
2627
check-submodule-update-label:
@@ -32,7 +33,7 @@ jobs:
3233
run: |
3334
echo This pull request attempts to update submodules without the changing-submodules-on-purpose label. Please apply that label if the changes are intentional, or remove those changes.
3435
exit 1
35-
- if: ${{ contains(github.event.pull_request.labels.*.name, 'changing-submodules-on-purpose') }}
36+
- if: ${{ contains(github.event.pull_request.labels.*.name, 'changing-submodules-on-purpose') }}
3637
name: Success
3738
run: |
3839
echo PR looks good.

third_party/tizen/tizen_qemu.py

+2-1
Original file line numberDiff line numberDiff line change
@@ -69,7 +69,8 @@
6969
help=("host directory to share with the guest"))
7070
parser.add_argument(
7171
'--runner', type=str,
72-
help=("path to the runner script which will run automatically after boot. path should be relative to shared directory"))
72+
help=("path to the runner script which will be executed after boot; "
73+
"it should be relative to the shared directory"))
7374
parser.add_argument(
7475
'--output', metavar='FILE', default="/dev/null",
7576
help="store the QEMU output in a FILE")

0 commit comments

Comments
 (0)