We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 194c6f9 commit 80dff76Copy full SHA for 80dff76
.github/workflows/lint_pr_title.yml
@@ -84,8 +84,10 @@ jobs:
84
85
# Perform linting:
86
- name: 'Perform linting'
87
+ env:
88
+ PR_TITLE: ${{ github.event.pull_request.title }}
89
run: |
90
echo "Pull request titles should follow stdlib's Git commit message conventions."
91
echo "Linting pull request title..."
- make lint-commit-message GIT_COMMIT_MESSAGE='${{ github.event.pull_request.title }}'
92
+ make lint-commit-message GIT_COMMIT_MESSAGE="${PR_TITLE}"
93
timeout-minutes: 5
0 commit comments