File tree Expand file tree Collapse file tree 1 file changed +28
-0
lines changed Expand file tree Collapse file tree 1 file changed +28
-0
lines changed Original file line number Diff line number Diff line change 1+ # action.yml
2+ name : ' GitBit Intelligent Issue Bot'
3+ description : ' Analyzes new issues to suggest labels, assignees, and related issues.'
4+ author : ' LMLK-seal'
5+
6+ inputs :
7+ github-token :
8+ description : ' The GITHUB_TOKEN secret.'
9+ required : true
10+
11+ runs :
12+ using : ' composite'
13+ steps :
14+ - name : Set up Python
15+ uses : actions/setup-python@v4
16+ with :
17+ python-version : ' 3.10'
18+
19+ - name : Install dependencies
20+ shell : bash
21+ run : pip install -r ${{ github.action_path }}/requirements.txt
22+
23+ - name : Run GitBit Bot
24+ shell : bash
25+ env :
26+ GITHUB_TOKEN : ${{ inputs.github-token }}
27+ # GITHUB_EVENT_PATH and GITHUB_REPOSITORY are automatically available
28+ run : python -m ${{ github.action_path }}/gitbit.main
You can’t perform that action at this time.
0 commit comments