From 13e83afc4407d115200fee054577f0a39923d699 Mon Sep 17 00:00:00 2001 From: Ryunosuke Muramatsu Date: Sun, 18 Feb 2024 15:42:45 +0900 Subject: [PATCH] ci: Fix action by actionlint --- .github/workflows/update-all-lint-rules.yaml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/update-all-lint-rules.yaml b/.github/workflows/update-all-lint-rules.yaml index 9ec5912..32a56ae 100644 --- a/.github/workflows/update-all-lint-rules.yaml +++ b/.github/workflows/update-all-lint-rules.yaml @@ -40,7 +40,7 @@ jobs: - name: Git config if: env.diff_count != '0' run: | - git remote set-url origin https://github-actions:${GH_TOKEN}@github.com/${GITHUB_REPOSITORY} + git remote set-url origin "https://github-actions:${GH_TOKEN}@github.com/${GITHUB_REPOSITORY}" git config --global user.name "${GITHUB_ACTOR}" git config --global user.email "${GITHUB_ACTOR}@users.noreply.github.com" - name: Commit & Push @@ -69,7 +69,7 @@ jobs: - name: Create PR env: GITHUB_TOKEN: ${{ steps.generate_token.outputs.token }} - run: gh pr create -B $GITHUB_REF -t ${{ env.branch }} -b "" -a $GITHUB_ACTOR -H ${{ env.branch }} + run: gh pr create -B "$GITHUB_REF" -t "${{ env.branch }}" -b "" -a "$GITHUB_ACTOR" -H "${{ env.branch }}" - name: Revoke GitHub Apps token env: