From c4c4164dbaa8ec2ce2ff6925604d3bd3d2539cd6 Mon Sep 17 00:00:00 2001 From: Christian Schlotter Date: Wed, 11 Sep 2024 11:15:01 +0200 Subject: [PATCH] hack: fix the shell used when running pr-verify --- .github/workflows/pr-verify.yaml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/.github/workflows/pr-verify.yaml b/.github/workflows/pr-verify.yaml index 5b1778c09ee2..bbbc49529b62 100644 --- a/.github/workflows/pr-verify.yaml +++ b/.github/workflows/pr-verify.yaml @@ -12,5 +12,6 @@ jobs: - uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332 # tag=v4.1.7 - name: Check if PR title is valid - run: sh hack/verify-pr-title.sh "${{ github.event.pull_request.title }}" + run: | + ./hack/verify-pr-title.sh "${{ github.event.pull_request.title }}"