We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 15f7538 commit 955d3baCopy full SHA for 955d3ba
.github/workflows/issue_check.yml
@@ -3,9 +3,15 @@ name: issue_check
3
on:
4
issues:
5
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]'
12
13
jobs:
- ssh:
14
+ issue_check:
15
runs-on: ubuntu-latest
16
steps:
17
- uses: actions/checkout@v4
@@ -18,6 +24,7 @@ jobs:
18
24
env:
19
25
GITHUB_TOKEN: ${{ secrets.ISSUE_CHECK_TOKEN }}
20
26
ISSUE_URL: ${{ github.event.issue.html_url }}
27
+ ISSUE_URL_INPUT: ${{ github.event.inputs.issue_url }}
21
28
run: |
22
29
cd ..
23
30
python issue_check.py
0 commit comments