From 13aab36bd96f841a9c557991a71bef8d662111e1 Mon Sep 17 00:00:00 2001 From: Dane Powell Date: Wed, 8 Nov 2023 10:43:20 -0800 Subject: [PATCH] yaml single quotes --- .github/dependabot.yml | 8 ++++---- .github/workflows/automerge.yml | 6 +++--- .github/workflows/ci.yml | 20 ++++++++++---------- .github/workflows/release-drafter.yml | 6 +++--- 4 files changed, 20 insertions(+), 20 deletions(-) diff --git a/.github/dependabot.yml b/.github/dependabot.yml index e7bc26610..d6a042319 100644 --- a/.github/dependabot.yml +++ b/.github/dependabot.yml @@ -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: - - "*" + - '*' diff --git a/.github/workflows/automerge.yml b/.github/workflows/automerge.yml index f5a90d47f..642c122d0 100644 --- a/.github/workflows/automerge.yml +++ b/.github/workflows/automerge.yml @@ -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 diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index a31b4b47f..695b0d66a 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -6,7 +6,7 @@ on: - 'dependabot/**' pull_request: schedule: - - cron: "0 2 * * *" + - cron: '0 2 * * *' release: types: [published] defaults: @@ -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. diff --git a/.github/workflows/release-drafter.yml b/.github/workflows/release-drafter.yml index 16803cb06..8428efcdf 100644 --- a/.github/workflows/release-drafter.yml +++ b/.github/workflows/release-drafter.yml @@ -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: