Skip to content

Commit 672a85c

Browse files
CopilotSaadnajmi
andcommitted
feat: add catch-all PR job that depends on all other checks
Co-authored-by: Saadnajmi <6722175+Saadnajmi@users.noreply.github.com>
1 parent de87f11 commit 672a85c

1 file changed

Lines changed: 15 additions & 0 deletions

File tree

.github/workflows/pr.yml

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -302,3 +302,18 @@ jobs:
302302
- name: Test markdown links
303303
run: |
304304
find . -name \*.md -not -name CHANGELOG.md -not -path '*/node_modules/*' -print0 | xargs -0 -n1 yarn test-links -c $(pwd)/.ado/markdown-link-check-config.json
305+
306+
pr:
307+
name: PR
308+
runs-on: ubuntu-latest
309+
needs:
310+
- js
311+
- android
312+
- macos
313+
- ios
314+
- windows
315+
- win32
316+
- test-links
317+
steps:
318+
- name: All required jobs passed
319+
run: echo "All required jobs completed."

0 commit comments

Comments
 (0)