Skip to content

Commit

Permalink
Re-validate submodules when labels are modified (#37101)
Browse files Browse the repository at this point in the history
* Re-validate submodules when labels are modified

* Reformat help text
  • Loading branch information
arkq authored Jan 22, 2025
1 parent c7024d3 commit 30508e4
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 2 deletions.
3 changes: 2 additions & 1 deletion .github/workflows/third-party-check.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,7 @@ on:
paths:
- "third_party/**"
- ".gitmodules"
types: [opened, synchronize, reopened, labeled, unlabeled]

jobs:
check-submodule-update-label:
Expand All @@ -32,7 +33,7 @@ jobs:
run: |
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.
exit 1
- if: ${{ contains(github.event.pull_request.labels.*.name, 'changing-submodules-on-purpose') }}
- if: ${{ contains(github.event.pull_request.labels.*.name, 'changing-submodules-on-purpose') }}
name: Success
run: |
echo PR looks good.
Expand Down
3 changes: 2 additions & 1 deletion third_party/tizen/tizen_qemu.py
Original file line number Diff line number Diff line change
Expand Up @@ -69,7 +69,8 @@
help=("host directory to share with the guest"))
parser.add_argument(
'--runner', type=str,
help=("path to the runner script which will run automatically after boot. path should be relative to shared directory"))
help=("path to the runner script which will be executed after boot; "
"it should be relative to the shared directory"))
parser.add_argument(
'--output', metavar='FILE', default="/dev/null",
help="store the QEMU output in a FILE")
Expand Down

0 comments on commit 30508e4

Please sign in to comment.