Skip to content

Commit

Permalink
Merge pull request #22 from signalsciences/lisa/fix-workflow-var
Browse files Browse the repository at this point in the history
Added double quotes to sed command
  • Loading branch information
lsmith500 authored Jul 22, 2021
2 parents 4870cdf + cacf28d commit 3fea748
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/release-and-pr.yml
Original file line number Diff line number Diff line change
@@ -58,7 +58,7 @@ jobs:
git config --local user.email "github-actions[bot]@users.noreply.github.com"
git config --local user.name "github-actions[bot]"
git checkout -b match-version-release
sed -i "s/tag:.*/tag: ${{ env.NEW_TAG }}/g" sigsci-values.yaml
sed -i "s/tag:.*/tag: \"${{ env.NEW_TAG }}\"/g" sigsci-values.yaml
git commit -am "Automated PR - Match upstream version" && git push -u origin match-version-release
curl -X POST -u ${{ github.actor }}:${{ secrets.GITHUB_TOKEN }} \
@@ -80,4 +80,4 @@ jobs:
-H "Accept: application/vnd.github.v3+json" \
-u ${{ github.actor }}:${{ secrets.GITHUB_TOKEN }} \
${{ env.GH_REPO }}/pulls/${{ env.PR_NUM }}/requested_reviewers \
--data '{"team_reviewers":["signalsciences/releng"]}'
--data '{"reviewers":["lisa-sigsci","bbucher-sigsci","leaf-fastly","rell-fastly","andy-fastly"]}'

0 comments on commit 3fea748

Please sign in to comment.