Skip to content

Commit c2a5a54

Browse files
committed
Merge remote-tracking branch 'upstream/develop' into develop
2 parents bb9b1fb + a74bbd2 commit c2a5a54

File tree

574 files changed

+29529
-2424
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

574 files changed

+29529
-2424
lines changed

.github/workflows/markdown_links.yml

Lines changed: 13 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -149,7 +149,8 @@ jobs:
149149

150150
# Fail the workflow if the status is not "success":
151151
- name: 'Check status'
152-
if: ${{ steps.results.outputs.status }} != 'success'
152+
id: check-status
153+
if: ${{ steps.results.outputs.status != 'success' }}
153154
run: |
154155
exit 1
155156
@@ -161,6 +162,17 @@ jobs:
161162
cat "${{ env.LOG_FILE_FAILURES }}"
162163
timeout-minutes: 5
163164

165+
# Create sub-issues for individual broken links:
166+
- name: 'Create sub-issues for broken links'
167+
if: failure() && contains(steps.check-status.outcome, 'failure')
168+
env:
169+
GITHUB_TOKEN: ${{ secrets.STDLIB_BOT_PAT_REPO_WRITE }}
170+
run: |
171+
"$GITHUB_WORKSPACE/.github/workflows/scripts/create_broken_link_issues" \
172+
'${{ steps.results.outputs.failures }}' \
173+
"9112"
174+
timeout-minutes: 30
175+
164176
# Upload the log files:
165177
- name: 'Upload log files'
166178
# Pin action to full length commit SHA

0 commit comments

Comments
 (0)