Skip to content

Commit eb687ba

Browse files
committed
Enhance DoD workflow to include 'ready_for_review' trigger and clarify draft PR handling
Refs: #7675
1 parent b3e62af commit eb687ba

File tree

1 file changed

+4
-1
lines changed

1 file changed

+4
-1
lines changed

.github/workflows/dod-checker.yml

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,17 @@
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+
# Skip this job for draft pull requests as they are considered works in progress
14+
if: github.event.pull_request.draft == false
1215
runs-on: ubuntu-24.04
1316
steps:
1417
- name: Print Pull Request ID

0 commit comments

Comments
 (0)