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 5fd8af8 commit d51a71aCopy full SHA for d51a71a
.github/workflows/lint_pr_title.yml
@@ -90,5 +90,7 @@ jobs:
90
run: |
91
echo "Pull request titles should follow stdlib's Git commit message conventions."
92
echo "Linting pull request title..."
93
- make lint-commit-message GIT_COMMIT_MESSAGE="${PR_TITLE}"
+ PR_TITLE_FILE="${GITHUB_WORKSPACE}/pr_title.txt"
94
+ printf '%s\n' "$PR_TITLE" > "$PR_TITLE_FILE"
95
+ make lint-commit-files FILES="$PR_TITLE_FILE"
96
timeout-minutes: 5
0 commit comments