From 4bae57045526e4f1d1f1f5d516a31ef96e92059f Mon Sep 17 00:00:00 2001 From: Athan Reines Date: Wed, 31 Jul 2024 03:13:52 -0700 Subject: [PATCH] build: prevent interpolation --- .github/workflows/lint_pr_title.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/lint_pr_title.yml b/.github/workflows/lint_pr_title.yml index fe6b0bb65b7..14762164c4b 100644 --- a/.github/workflows/lint_pr_title.yml +++ b/.github/workflows/lint_pr_title.yml @@ -87,5 +87,5 @@ jobs: run: | echo "Pull request titles should follow stdlib's Git commit message conventions." echo "Linting pull request title..." - make lint-commit-message GIT_COMMIT_MESSAGE="${{ github.event.pull_request.title }}" + make lint-commit-message GIT_COMMIT_MESSAGE='${{ github.event.pull_request.title }}' timeout-minutes: 5