Skip to content

Commit 23fb3a9

Browse files
[code-infra] Fix bash escape
1 parent 4a24067 commit 23fb3a9

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

.github/workflows/ci.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ jobs:
2828
matrix:
2929
os: [macos-latest, windows-latest, ubuntu-latest]
3030
steps:
31-
- run: echo "${{ github.actor }}"
31+
- run: echo '${{ github.actor }}'
3232
- uses: actions/checkout@08c6903cd8c0fde910a37f88322edcfb5dd907a8 # v5.0.0
3333
with:
3434
# fetch all tags which are required for `pnpm release:changelog`

.github/workflows/maintenance.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ jobs:
2929
contents: read
3030
pull-requests: write
3131
steps:
32-
- run: echo "${{ github.actor }}"
32+
- run: echo '${{ github.actor }}'
3333
- name: Check if prs are dirty
3434
uses: eps1lon/actions-label-merge-conflict@1df065ebe6e3310545d4f4c4e862e43bdca146f0 # v3.0.3
3535
with:

0 commit comments

Comments
 (0)