Skip to content

Commit 7458153

Browse files
committed
Enhance DoD workflow to include 'ready_for_review' event and ensure checks only run for non-draft PRs
Refs: #7675
1 parent e78bee6 commit 7458153

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

.github/workflows/dod-checker.yml

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,16 @@
11
name: Definition of Done
2+
23
on:
34
pull_request:
4-
types: [opened, edited, synchronize]
5+
types: [opened, edited, synchronize, ready_for_review]
56

67
concurrency:
78
group: 'pr-${{ github.event.pull_request.number }}'
89
cancel-in-progress: true
910

1011
jobs:
1112
check-dod:
13+
if: github.event.pull_request.draft == false
1214
runs-on: ubuntu-24.04
1315
steps:
1416
- name: Print Pull Request ID

0 commit comments

Comments
 (0)