在idea中可以正常运行,打包后使用java -jar启动提示Bot verify info [xxx] registration failed or start failed错误 #577
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Issue Waiting Report | |
on: | |
issue_comment: | |
types: [created] | |
jobs: | |
issue-report: | |
name: Issue Report | |
if: (github.event.sender.login == github.event.issue.user.login) && contains(github.event.issue.labels.*.name, '等待反馈') && github.event.issue.state == 'open' | |
runs-on: ubuntu-latest | |
steps: | |
# https://github.com/marketplace/actions/simple-issue-labeler | |
- name: Issue Labeler | |
uses: andymckay/[email protected] | |
with: | |
remove-labels: "等待反馈, 陈旧" | |
add-labels: "等待确认" | |
repo-token: ${{ secrets.FORLIY_ACCESS_TOKEN }} |