Skip to content

Commit 0c8d744

Browse files
committed
workflow dispatch for testing
1 parent 88d1ae5 commit 0c8d744

File tree

1 file changed

+7
-1
lines changed

1 file changed

+7
-1
lines changed

.github/workflows/cla.yaml

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,12 @@ on:
55
types: [created]
66
pull_request_target:
77
types: [opened, closed, synchronize]
8+
workflow_dispatch:
9+
inputs:
10+
pr_number:
11+
description: 'Pull request number to check'
12+
required: true
13+
type: number
814

915
jobs:
1016
cla:
@@ -13,7 +19,7 @@ jobs:
1319
if: github.actor != 'dependabot[bot]'
1420
steps:
1521
- name: CLA Assistant
16-
if: (github.event.comment.body == 'recheck' || github.event.comment.body == 'I have read the CLA Document and I hereby sign the CLA') || github.event_name == 'pull_request_target'
22+
if: (github.event.comment.body == 'recheck' || github.event.comment.body == 'I have read the CLA Document and I hereby sign the CLA') || github.event_name == 'pull_request_target' || github.event_name == 'workflow_dispatch'
1723
uses: secondlife-3p/contributor-assistant@v2
1824
env:
1925
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}

0 commit comments

Comments
 (0)