Skip to content

Commit 3632033

Browse files
committed
github actions: Wrap long command lines for readability
1 parent d31bd1c commit 3632033

File tree

1 file changed

+12
-2
lines changed

1 file changed

+12
-2
lines changed

.github/workflows/validate-kernel-commits.yml

Lines changed: 12 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,12 @@ jobs:
4040
working-directory: kernel-src-tree-tools
4141
run: |
4242
set +e # Don't exit on error, we want to capture the output
43-
python3 check_kernel_commits.py --repo .. --pr_branch "${{ github.head_ref }}" --base_branch "${{ github.base_ref }}" --markdown --check-cves | tee ../ckc_result.txt
43+
python3 check_kernel_commits.py \
44+
--repo .. \
45+
--pr_branch "${{ github.head_ref }}" \
46+
--base_branch "${{ github.base_ref }}" \
47+
--markdown \
48+
--check-cves | tee ../ckc_result.txt
4449
EXIT_CODE=$?
4550
4651
# Check if the script failed
@@ -98,7 +103,12 @@ jobs:
98103
working-directory: kernel-src-tree-tools
99104
run: |
100105
set +e # Don't exit on error, we want to capture the output
101-
python3 run_interdiff.py --repo .. --pr_branch "${{ github.head_ref }}" --base_branch "${{ github.base_ref }}" --markdown --interdiff ../patchutils/src/interdiff | tee ../interdiff_result.txt
106+
python3 run_interdiff.py \
107+
--repo .. \
108+
--pr_branch "${{ github.head_ref }}" \
109+
--base_branch "${{ github.base_ref }}" \
110+
--markdown \
111+
--interdiff ../patchutils/src/interdiff | tee ../interdiff_result.txt
102112
EXIT_CODE=$?
103113
104114
# Check if the script failed

0 commit comments

Comments
 (0)