请问怎样在代码中指定,使浏览器一直在前台显示呢?// How to make Browser always display by code, without "-rod=show" arg before run ? #1078
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: Check Issues | |
on: | |
issues: | |
types: [opened, edited] | |
permissions: | |
issues: write | |
jobs: | |
run: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/setup-node@v2 | |
with: | |
node-version: 16 | |
- uses: actions/setup-go@v4 | |
with: | |
go-version: 1.18 | |
- uses: actions/checkout@v3 | |
- name: check | |
env: | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
run: cd lib/utils/check-issue && go run . |