8000
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 d91d2a6 commit 8ff470bCopy full SHA for 8ff470b
.github/workflows/issue.yml
.github/workflows/issue_check.yml
@@ -0,0 +1,23 @@
1
+name: issue_check
2
+
3
+on:
4
+ issues:
5
+ types: [opened]
6
7
+jobs:
8
+ ssh:
9
+ runs-on: ubuntu-latest
10
+ steps:
11
+ - uses: actions/checkout@v4
12
+ - name: prepare software
13
+ run: |
14
+ pip install PyGithub
15
+ cd ..
16
+ wget https://raw.githubusercontent.com/chenxuuu/action/main/scripts/issue_check.py
17
+ - name: check issue
18
+ env:
19
+ GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
20
+ ISSUE_URL: ${{ github.event.issue.html_url }}
21
22
23
+ python issue_check.py
0 commit comments