From 44aeb5b8860e484e8df72b5b74a15ff996a8ff58 Mon Sep 17 00:00:00 2001 From: Olivier Tassinari Date: Sun, 21 Sep 2025 15:01:50 +0200 Subject: [PATCH] [code-infra] Fix bash escape --- .github/workflows/ci.yml | 2 +- .github/workflows/maintenance.yml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 5d771bd8441431..fca0277480a299 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -28,7 +28,7 @@ jobs: matrix: os: [macos-latest, windows-latest, ubuntu-latest] steps: - - run: echo "${{ github.actor }}" + - run: echo '${{ github.actor }}' - uses: actions/checkout@08c6903cd8c0fde910a37f88322edcfb5dd907a8 # v5.0.0 with: # fetch all tags which are required for `pnpm release:changelog` diff --git a/.github/workflows/maintenance.yml b/.github/workflows/maintenance.yml index 05628e02946487..96c62a0958ceaf 100644 --- a/.github/workflows/maintenance.yml +++ b/.github/workflows/maintenance.yml @@ -29,7 +29,7 @@ jobs: contents: read pull-requests: write steps: - - run: echo "${{ github.actor }}" + - run: echo '${{ github.actor }}' - name: Check if prs are dirty uses: eps1lon/actions-label-merge-conflict@1df065ebe6e3310545d4f4c4e862e43bdca146f0 # v3.0.3 with: