Skip to content

Commit b01aff8

Browse files
dschogitster
authored andcommitted
ci: fix indentation of the ci-config job
The section added in e76eec3 (ci: allow per-branch config for GitHub Actions, 2020-05-07) contains a `&&`-chain that connects several commands. The first command is actually so long that it stretches over multiple lines, and as per usual, the continuation lines are indented one more level than the first. However, the subsequent commands in the `&&`-chain were also indented one more level than the first command, which was almost certainly unintended. Signed-off-by: Johannes Schindelin <[email protected]> Acked-by: Jeff King <[email protected]> Signed-off-by: Junio C Hamano <[email protected]>
1 parent e197136 commit b01aff8

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

.github/workflows/main.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -23,8 +23,8 @@ jobs:
2323
--filter=blob:none \
2424
https://github.com/${{ github.repository }} \
2525
config-repo &&
26-
cd config-repo &&
27-
git checkout HEAD -- ci/config
26+
cd config-repo &&
27+
git checkout HEAD -- ci/config
2828
- id: check-ref
2929
name: check whether CI is enabled for ref
3030
run: |

0 commit comments

Comments
 (0)