Skip to content

Commit 955d3ba

Browse files
committed
add: 手动检查issue
1 parent 15f7538 commit 955d3ba

File tree

1 file changed

+8
-1
lines changed

1 file changed

+8
-1
lines changed

.github/workflows/issue_check.yml

Lines changed: 8 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,9 +3,15 @@ name: issue_check
33
on:
44
issues:
55
types: [opened]
6+
workflow_dispatch:
7+
inputs:
8+
issue_url:
9+
description: 'issue url'
10+
required: true
11+
default: 'https://github.com/[user]/[repo]/issues/[id]'
612

713
jobs:
8-
ssh:
14+
issue_check:
915
runs-on: ubuntu-latest
1016
steps:
1117
- uses: actions/checkout@v4
@@ -18,6 +24,7 @@ jobs:
1824
env:
1925
GITHUB_TOKEN: ${{ secrets.ISSUE_CHECK_TOKEN }}
2026
ISSUE_URL: ${{ github.event.issue.html_url }}
27+
ISSUE_URL_INPUT: ${{ github.event.inputs.issue_url }}
2128
run: |
2229
cd ..
2330
python issue_check.py

0 commit comments

Comments
 (0)