-
Notifications
You must be signed in to change notification settings - Fork 331
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
1 changed file
with
3 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -81,10 +81,13 @@ jobs: | |
- name: "check the formatting of the PR title and for missing or inconsistent labels" | ||
# TODO: skip this check if the PR is in draft stage! | ||
shell: bash # just in case | ||
run: | | ||
Check failure on line 85 in .github/workflows/build.yml GitHub Actions / actionlint
|
||
set -eo pipefail | ||
title=${{github.event.pull_request.title}} | ||
echo $title | ||
label_names=${{github.event.pull_request.labels[*].name}} | ||
echo $label_names | ||
lake exe check-title-labels $title $label_names | ||
- name: Install bibtool | ||
|