Skip to content

Commit 226e7f7

Browse files
authored
[ci] fix errors about indentation in yaml files (Part 2) (#6789)
1 parent 7679c73 commit 226e7f7

File tree

8 files changed

+529
-530
lines changed

8 files changed

+529
-530
lines changed

.github/workflows/cuda.yml

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -3,10 +3,10 @@ name: CUDA Version
33
on:
44
push:
55
branches:
6-
- master
6+
- master
77
pull_request:
88
branches:
9-
- master
9+
- master
1010
# Run manually by clicking a button in the UI
1111
workflow_dispatch:
1212
inputs:
@@ -130,7 +130,7 @@ jobs:
130130
runs-on: ubuntu-latest
131131
needs: [test]
132132
steps:
133-
- name: Note that all tests succeeded
134-
uses: re-actors/alls-green@v1.2.2
135-
with:
136-
jobs: ${{ toJSON(needs) }}
133+
- name: Note that all tests succeeded
134+
uses: re-actors/alls-green@v1.2.2
135+
with:
136+
jobs: ${{ toJSON(needs) }}

.github/workflows/python_package.yml

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -3,10 +3,10 @@ name: Python-package
33
on:
44
push:
55
branches:
6-
- master
6+
- master
77
pull_request:
88
branches:
9-
- master
9+
- master
1010

1111
# automatically cancel in-progress builds if another commit is pushed
1212
concurrency:
@@ -147,7 +147,7 @@ jobs:
147147
runs-on: ubuntu-latest
148148
needs: [test, test-latest-versions, test-oldest-versions]
149149
steps:
150-
- name: Note that all tests succeeded
151-
uses: re-actors/alls-green@v1.2.2
152-
with:
153-
jobs: ${{ toJSON(needs) }}
150+
- name: Note that all tests succeeded
151+
uses: re-actors/alls-green@v1.2.2
152+
with:
153+
jobs: ${{ toJSON(needs) }}

.github/workflows/r_package.yml

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -3,10 +3,10 @@ name: R-package
33
on:
44
push:
55
branches:
6-
- master
6+
- master
77
pull_request:
88
branches:
9-
- master
9+
- master
1010

1111
# automatically cancel in-progress builds if another commit is pushed
1212
concurrency:
@@ -358,7 +358,7 @@ jobs:
358358
runs-on: ubuntu-latest
359359
needs: [test, test-r-sanitizers, test-r-extra-checks]
360360
steps:
361-
- name: Note that all tests succeeded
362-
uses: re-actors/alls-green@v1.2.2
363-
with:
364-
jobs: ${{ toJSON(needs) }}
361+
- name: Note that all tests succeeded
362+
uses: re-actors/alls-green@v1.2.2
363+
with:
364+
jobs: ${{ toJSON(needs) }}

.github/workflows/static_analysis.yml

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -5,10 +5,10 @@ name: Static Analysis
55
on:
66
push:
77
branches:
8-
- master
8+
- master
99
pull_request:
1010
branches:
11-
- master
11+
- master
1212

1313
# automatically cancel in-progress builds if another commit is pushed
1414
concurrency:
@@ -88,7 +88,7 @@ jobs:
8888
runs-on: ubuntu-latest
8989
needs: [test, r-check-docs]
9090
steps:
91-
- name: Note that all tests succeeded
92-
uses: re-actors/alls-green@v1.2.2
93-
with:
94-
jobs: ${{ toJSON(needs) }}
91+
- name: Note that all tests succeeded
92+
uses: re-actors/alls-green@v1.2.2
93+
with:
94+
jobs: ${{ toJSON(needs) }}

.github/workflows/triggering_comments.yml

Lines changed: 19 additions & 19 deletions
Original file line numberDiff line numberDiff line change
@@ -11,24 +11,24 @@ jobs:
1111
env:
1212
SECRETS_WORKFLOW: ${{ secrets.WORKFLOW }}
1313
steps:
14-
- name: Checkout repository
15-
uses: actions/checkout@v4
16-
with:
17-
fetch-depth: 5
18-
submodules: false
14+
- name: Checkout repository
15+
uses: actions/checkout@v4
16+
with:
17+
fetch-depth: 5
18+
submodules: false
1919

20-
- name: Trigger R valgrind tests
21-
if: github.event.comment.body == '/gha run r-valgrind'
22-
run: |
23-
$GITHUB_WORKSPACE/.ci/trigger-dispatch-run.sh \
24-
"${{ github.event.issue.pull_request.url }}" \
25-
"${{ github.event.comment.id }}" \
26-
"gha_run_r_valgrind"
20+
- name: Trigger R valgrind tests
21+
if: github.event.comment.body == '/gha run r-valgrind'
22+
run: |
23+
$GITHUB_WORKSPACE/.ci/trigger-dispatch-run.sh \
24+
"${{ github.event.issue.pull_request.url }}" \
25+
"${{ github.event.comment.id }}" \
26+
"gha_run_r_valgrind"
2727
28-
- name: Trigger update R configure
29-
if: github.event.comment.body == '/gha run r-configure'
30-
run: |
31-
$GITHUB_WORKSPACE/.ci/trigger-dispatch-run.sh \
32-
"${{ github.event.issue.pull_request.url }}" \
33-
"${{ github.event.comment.id }}" \
34-
"gha_run_r_configure"
28+
- name: Trigger update R configure
29+
if: github.event.comment.body == '/gha run r-configure'
30+
run: |
31+
$GITHUB_WORKSPACE/.ci/trigger-dispatch-run.sh \
32+
"${{ github.event.issue.pull_request.url }}" \
33+
"${{ github.event.comment.id }}" \
34+
"gha_run_r_configure"

0 commit comments

Comments
 (0)