-
Notifications
You must be signed in to change notification settings - Fork 6.9k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Comment out the action that checks to make sure we haven't modified workflow files. Signed-off-by: David Brown <[email protected]>
- Loading branch information
Showing
1 changed file
with
14 additions
and
14 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 |
---|---|---|
|
@@ -37,21 +37,21 @@ jobs: | |
let pr_number = Number(fs.readFileSync("./pr_num/pr_num")); | ||
core.exportVariable("PR_NUM", pr_number); | ||
- name: Check PR number | ||
if: steps.download-artifacts.outputs.found_artifact == 'true' | ||
id: check-pr | ||
uses: carpentries/actions/[email protected] | ||
with: | ||
pr: ${{ env.PR_NUM }} | ||
sha: ${{ github.event.workflow_run.head_sha }} | ||
# - name: Check PR number | ||
# if: steps.download-artifacts.outputs.found_artifact == 'true' | ||
# id: check-pr | ||
# uses: carpentries/actions/[email protected] | ||
# with: | ||
# pr: ${{ env.PR_NUM }} | ||
# sha: ${{ github.event.workflow_run.head_sha }} | ||
|
||
- name: Validate PR number | ||
if: | | ||
steps.download-artifacts.outputs.found_artifact == 'true' && | ||
steps.check-pr.outputs.VALID != 'true' | ||
run: | | ||
echo "ABORT: PR number validation failed!" | ||
exit 1 | ||
# - name: Validate PR number | ||
# if: | | ||
# steps.download-artifacts.outputs.found_artifact == 'true' && | ||
# steps.check-pr.outputs.VALID != 'true' | ||
# run: | | ||
# echo "ABORT: PR number validation failed!" | ||
# exit 1 | ||
|
||
- name: Uncompress HTML docs | ||
if: steps.download-artifacts.outputs.found_artifact == 'true' | ||
|