8000 add: issue检查 · Air-duino/Arduino-AirMCU@8ff470b · GitHub
[go: up one dir, main page]

Skip to content

Commit 8ff470b

Browse files
committed
add: issue检查
1 parent d91d2a6 commit 8ff470b

File tree

2 files changed

+23
-18
lines changed

2 files changed

+23
-18
lines changed

.github/workflows/issue.yml

Lines changed: 0 additions & 18 deletions
This file was deleted.

.github/workflows/issue_check.yml

Lines changed: 23 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -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+
run: |
22+
cd ..
23+
python issue_check.py

0 commit comments

Comments
 (0)
0