Skip to content

Commit

Permalink
fix(github): use double quotes
Browse files Browse the repository at this point in the history
  • Loading branch information
trieloff committed Jun 29, 2023
1 parent 534017a commit d7e285d
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/cleanup-on-create.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down

0 comments on commit d7e285d

Please sign in to comment.