转后的exe,360提示有木马,需要处理吗? #6
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: Close AV issues | |
on: | |
issues: | |
types: | |
- opened | |
jobs: | |
close-issue: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Check for keywords | |
uses: actions/github-script@v7 | |
with: | |
script: | | |
const script = require('./.github/workflows/close-AV-issues.js') | |
await script({github, context}) | |
github-token: ${{ secrets.BOT_TOKEN }} |