Skip to content

Commit e919b5f

Browse files
committed
Test: Attempt to auto-comment failures
Signed-off-by: Jesse Whitehouse <[email protected]>
1 parent 65d42d4 commit e919b5f

File tree

1 file changed

+13
-1
lines changed

1 file changed

+13
-1
lines changed

.github/workflows/dco-check.yml

Lines changed: 13 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,4 +6,16 @@ jobs:
66
check:
77
runs-on: ubuntu-latest
88
steps:
9-
- uses: tisonkun/[email protected]
9+
- name: Check for DCO
10+
id: dco-check
11+
uses: tisonkun/[email protected]
12+
- name: Comment about DCO status
13+
uses: actions/github-script@v6
14+
with:
15+
script: |
16+
github.rest.issues.createComment({
17+
issue_number: context.issue.number,
18+
owner: context.repo.owner,
19+
repo: context.repo.repo,
20+
body: "${{steps.dco-check.outputs.result}}"
21+
})

0 commit comments

Comments
 (0)