Skip to content

Commit

Permalink
yaml single quotes
Browse files Browse the repository at this point in the history
  • Loading branch information
danepowell committed Nov 8, 2023
1 parent 58da1c6 commit 13aab36
Show file tree
Hide file tree
Showing 4 changed files with 20 additions and 20 deletions.
8 changes: 4 additions & 4 deletions .github/dependabot.yml
Original file line number Diff line number Diff line change
@@ -1,11 +1,11 @@
version: 2
updates:
- package-ecosystem: "composer"
directory: "/"
- package-ecosystem: 'composer'
directory: '/'
versioning-strategy: lockfile-only
schedule:
interval: "weekly"
interval: 'weekly'
groups:
dependencies:
patterns:
- "*"
- '*'
6 changes: 3 additions & 3 deletions .github/workflows/automerge.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,11 +2,11 @@ name: Auto-merge dependency updates
on:
workflow_run:
types:
- "completed"
- 'completed'
workflows:
- "CI"
- 'CI'
branches:
- "dependabot/**"
- 'dependabot/**'
permissions:
contents: write
pull-requests: write
Expand Down
20 changes: 10 additions & 10 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ on:
- 'dependabot/**'
pull_request:
schedule:
- cron: "0 2 * * *"
- cron: '0 2 * * *'
release:
types: [published]
defaults:
Expand All @@ -27,17 +27,17 @@ jobs:
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: ["ubuntu-22.04"]
php: ["8.1", "8.2", "8.3"]
coverage: ["none"]
os: ['ubuntu-22.04']
php: ['8.1', '8.2', '8.3']
coverage: ['none']
include:
- os: "ubuntu-22.04"
php: "8.2"
coverage: "pcov"
- os: 'ubuntu-22.04'
php: '8.2'
coverage: 'pcov'
# Only test pre-installed (i.e. fast) versions of PHP on Windows.
- os: "windows-2022"
php: "8.2"
coverage: "none"
- os: 'windows-2022'
php: '8.2'
coverage: 'none'
steps:
- name: Prepare Git
# Windows corrupts line endings on checkout, causing test failures.
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/release-drafter.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,10 +6,10 @@ on:
- main
workflow_run:
types:
- "completed"
- 'completed'
workflows:
- "Auto-label pull requests"
- "Auto-merge dependency updates"
- 'Auto-label pull requests'
- 'Auto-merge dependency updates'

jobs:
update_release_draft:
Expand Down

0 comments on commit 13aab36

Please sign in to comment.