Skip to content

Commit e8ade8b

Browse files
committed
add workflow notification to open issue if fails
1 parent 69c1e8d commit e8ade8b

File tree

1 file changed

+11
-0
lines changed

1 file changed

+11
-0
lines changed

.github/workflows/documentation-disable-list-audit.yml

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -24,3 +24,14 @@ jobs:
2424

2525
- name: Run Doc site audit
2626
run: ./gradlew :instrumentation-docs:docSiteAudit
27+
28+
workflow-notification:
29+
permissions:
30+
contents: read
31+
issues: write
32+
needs:
33+
- crawl
34+
if: always()
35+
uses: ./.github/workflows/reusable-workflow-notification.yml
36+
with:
37+
success: ${{ needs.crawl.result == 'success' }}

0 commit comments

Comments
 (0)