Skip to content

Commit 39b8aca

Browse files
committed
github actions: Wrap long command lines for readability
1 parent 05a1221 commit 39b8aca

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
@@ -94,7 +99,12 @@ jobs:
9499
working-directory: kernel-src-tree-tools
95100
run: |
96101
set +e # Don't exit on error, we want to capture the output
97-
python3 run_interdiff.py --repo .. --pr_branch "${{ github.head_ref }}" --base_branch "${{ github.base_ref }}" --markdown --interdiff ../patchutils/src/interdiff | tee ../interdiff_result.txt
102+
python3 run_interdiff.py \
103+
--repo .. \
104+
--pr_branch "${{ github.head_ref }}" \
105+
--base_branch "${{ github.base_ref }}" \
106+
--markdown \
107+
--interdiff ../patchutils/src/interdiff | tee ../interdiff_result.txt
98108
EXIT_CODE=$?
99109
100110
# Check if the script failed

0 commit comments

Comments
 (0)