Skip to content

Commit f273e07

Browse files
committed
Add yaml fixes
1 parent 0271562 commit f273e07

7 files changed

Lines changed: 8 additions & 8 deletions

File tree

.github/workflows/code-coverage.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
name: "Code coverage"
22

3-
on:
3+
on: # yamllint disable-line rule:truthy
44
workflow_call:
55
inputs:
66
php-version:

.github/workflows/coding-standards.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
name: "Coding Standards"
22

3-
on:
3+
on: # yamllint disable-line rule:truthy
44
workflow_call:
55
inputs:
66
php-version:

.github/workflows/continues-integration.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,11 @@
11
name: "Continuous Integration"
22

3-
on:
3+
on: # yamllint disable-line rule:truthy
44
workflow_call:
55
inputs:
66
php-versions:
77
description: "The PHP versions to use when running the job"
8-
default: '["7.4", "8.0", "8.1"]'
8+
default: "['7.4', '8.0', '8.1']"
99
required: false
1010
type: "string"
1111
php-extensions:

.github/workflows/dependency-analysis.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
name: "Dependency Analysis"
22

3-
on:
3+
on: # yamllint disable-line rule:truthy
44
workflow_call:
55
inputs:
66
php-version:

.github/workflows/lint.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
name: "Lint"
22

3-
on:
3+
on: # yamllint disable-line rule:truthy
44
workflow_call:
55
inputs:
66
php-version:

.github/workflows/self-integrate.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ on: # yamllint disable-line rule:truthy
88

99
jobs:
1010
lint:
11-
runs-on: ubuntu-latest
11+
runs-on: "ubuntu-latest"
1212
steps:
1313
- name: "Checkout"
1414
uses: "actions/checkout@v3"

.github/workflows/static-analysis.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
name: "Code coverage"
22

3-
on:
3+
on: # yamllint disable-line rule:truthy
44
workflow_call:
55
inputs:
66
php-version:

0 commit comments

Comments
 (0)