-
Notifications
You must be signed in to change notification settings - Fork 331
Commit
- Loading branch information
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -74,10 +74,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 78 in .github/workflows/bors.yml GitHub Actions / actionlint
Check failure on line 78 in .github/workflows/bors.yml GitHub Actions / actionlint
Check failure on line 78 in .github/workflows/bors.yml GitHub Actions / actionlint
|
||
set -eo pipefail | ||
title=${{github.event.pull_request.title}} | ||
label_names=${{github.event.pull_request.labels[*].name}} | ||
title="${{github.event.pull_request.title}}" | ||
echo $title | ||
label_names=$(echo "${{ toJson(github.event.pull_request.labels) }}" | jq -r '.[].name') | ||
echo $label_names | ||
lake exe check-title-labels $title $label_names | ||
- name: Install bibtool | ||
|
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -84,9 +84,9 @@ jobs: | |
shell: bash # just in case | ||
run: | | ||
Check failure on line 85 in .github/workflows/build.yml GitHub Actions / actionlint
Check failure on line 85 in .github/workflows/build.yml GitHub Actions / actionlint
Check failure on line 85 in .github/workflows/build.yml GitHub Actions / actionlint
|
||
set -eo pipefail | ||
title=${{github.event.pull_request.title}} | ||
title="${{github.event.pull_request.title}}" | ||
echo $title | ||
label_names=${{github.event.pull_request.labels[*].name}} | ||
label_names=$(echo "${{ toJson(github.event.pull_request.labels) }}" | jq -r '.[].name') | ||
echo $label_names | ||
lake exe check-title-labels $title $label_names | ||
|
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -78,10 +78,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 82 in .github/workflows/build_fork.yml GitHub Actions / actionlint
Check failure on line 82 in .github/workflows/build_fork.yml GitHub Actions / actionlint
Check failure on line 82 in .github/workflows/build_fork.yml GitHub Actions / actionlint
|
||
set -eo pipefail | ||
title=${{github.event.pull_request.title}} | ||
label_names=${{github.event.pull_request.labels[*].name}} | ||
title="${{github.event.pull_request.title}}" | ||
echo $title | ||
label_names=$(echo "${{ toJson(github.event.pull_request.labels) }}" | jq -r '.[].name') | ||
echo $label_names | ||
lake exe check-title-labels $title $label_names | ||
- name: Install bibtool | ||
|