From d7e285dbb452617a5166569f91da4cb376548a38 Mon Sep 17 00:00:00 2001 From: Lars Trieloff Date: Thu, 29 Jun 2023 13:15:12 +0200 Subject: [PATCH] fix(github): use double quotes --- .github/workflows/cleanup-on-create.yaml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/cleanup-on-create.yaml b/.github/workflows/cleanup-on-create.yaml index d2e0494e69..1e8f9e52ab 100644 --- a/.github/workflows/cleanup-on-create.yaml +++ b/.github/workflows/cleanup-on-create.yaml @@ -30,12 +30,12 @@ jobs: - name: Initialize README # replace {repo} and {owner} with the actual values run: | - sed -i.bak 's/{repo}/$(basename ${{ github.repository }})/g' README.md - sed -i.bak 's/{owner}/$(dirname ${{ github.repository }})/g' README.md + sed -i.bak "s/{repo}/$(basename ${{ github.repository }})/g" README.md + sed -i.bak "s/{owner}/$(dirname ${{ github.repository }})/g" README.md - name: Initialize Pull Request Template run: | - sed -i.bak 's/{repo}/$(basename ${{ github.repository }})/g' .github/pull_request_template.md - sed -i.bak 's/{owner}/$(dirname ${{ github.repository }})/g' .github/pull_request_template.md + sed -i.bak "s/{repo}/$(basename ${{ github.repository }})/g" .github/pull_request_template.md + sed -i.bak "s/{owner}/$(dirname ${{ github.repository }})/g" .github/pull_request_template.md # commit back to the repository