Skip to content

Commit 075d946

Browse files
Fix linting on github action workflows.
Signed-off-by: Gavin Didrichsen <[email protected]>
1 parent 55fb192 commit 075d946

File tree

3 files changed

+25
-19
lines changed

3 files changed

+25
-19
lines changed

.github/workflows/ci.yml

Lines changed: 10 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,18 +1,21 @@
1-
---
2-
name: ci
1+
name: "ci"
2+
33
on:
44
pull_request:
5-
branches: [main]
5+
branches:
6+
- "main"
67
workflow_dispatch:
8+
79
jobs:
810
Spec:
911
if: ${{ github.repository_owner == 'puppetlabs' }}
10-
uses: puppetlabs/cat-github-actions/.github/workflows/module_ci.yml@main
11-
secrets: inherit
12+
uses: "puppetlabs/cat-github-actions/.github/workflows/module_ci.yml@main"
13+
secrets: "inherit"
14+
1215
Acceptance:
1316
if: ${{ github.repository_owner == 'puppetlabs' }}
1417
needs: Spec
15-
uses: puppetlabs/cat-github-actions/.github/workflows/module_acceptance.yml@main
18+
uses: "puppetlabs/cat-github-actions/.github/workflows/module_acceptance.yml@main"
1619
with:
1720
flags: --provision-service
18-
secrets: inherit
21+
secrets: "inherit"

.github/workflows/nightly.yml

Lines changed: 9 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,18 +1,20 @@
1-
---
2-
name: nightly
1+
name: "nightly"
2+
33
on:
44
schedule:
5-
- cron: 0 0 * * *
5+
- cron: "0 0 * * *"
66
workflow_dispatch:
7+
78
jobs:
89
Spec:
910
if: ${{ github.repository_owner == 'puppetlabs' }}
10-
uses: puppetlabs/cat-github-actions/.github/workflows/module_ci.yml@main
11-
secrets: inherit
11+
uses: "puppetlabs/cat-github-actions/.github/workflows/module_ci.yml@main"
12+
secrets: "inherit"
13+
1214
Acceptance:
1315
if: ${{ github.repository_owner == 'puppetlabs' }}
1416
needs: Spec
15-
uses: puppetlabs/cat-github-actions/.github/workflows/module_acceptance.yml@main
17+
uses: "puppetlabs/cat-github-actions/.github/workflows/module_acceptance.yml@main"
1618
with:
1719
flags: --provision-service
18-
secrets: inherit
20+
secrets: "inherit"

.github/workflows/release.yml

Lines changed: 6 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,9 @@
1-
---
2-
name: Publish module
1+
name: "Publish module"
2+
33
on:
44
workflow_dispatch:
5+
56
jobs:
6-
release:
7-
uses: puppetlabs/cat-github-actions/.github/workflows/module_release.yml@main
8-
secrets: inherit
7+
release:
8+
uses: "puppetlabs/cat-github-actions/.github/workflows/module_release.yml@main"
9+
secrets: "inherit"

0 commit comments

Comments
 (0)