Skip to content

Commit

Permalink
add: 手动检查issue
Browse files Browse the repository at this point in the history
  • Loading branch information
chenxuuu committed Dec 13, 2023
1 parent 15f7538 commit 955d3ba
Showing 1 changed file with 8 additions and 1 deletion.
9 changes: 8 additions & 1 deletion .github/workflows/issue_check.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,9 +3,15 @@ name: issue_check
on:
issues:
types: [opened]
workflow_dispatch:
inputs:
issue_url:
description: 'issue url'
required: true
default: 'https://github.com/[user]/[repo]/issues/[id]'

jobs:
ssh:
issue_check:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
Expand All @@ -18,6 +24,7 @@ jobs:
env:
GITHUB_TOKEN: ${{ secrets.ISSUE_CHECK_TOKEN }}
ISSUE_URL: ${{ github.event.issue.html_url }}
ISSUE_URL_INPUT: ${{ github.event.inputs.issue_url }}
run: |
cd ..
python issue_check.py

0 comments on commit 955d3ba

Please sign in to comment.