We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
自动运行的脚本状态一直是Skipped 之前没用过GitHub的action 不知道怎么调整 很抱歉问这个问题
The text was updated successfully, but these errors were encountered:
name: AutoCheckin on: workflow_dispatch: release: types: [published] push: tags: - 'v*' # branches: # - master schedule: - cron: "0 2 * * *" watch: types: [started] jobs: build: runs-on: ubuntu-latest if: github.event.repository.owner.id == github.event.sender.id # <== 删掉这一行 steps: - name: Checkout uses: actions/checkout@master - name: Set up Python #安装python uses: actions/setup-python@v4 with: python-version: '3.10' - name: Install requirements #安装轮子 run: | pip install -r requirements.txt - name: Run script run: | python3 main.py "${{ secrets.cookie }}" "${{ secrets.teleid }}" "${{ secrets.teletoken }}" "${{ secrets.SCKEY }}" "${{ secrets.QQKEY }}" "${{ secrets.PPKEY }}"
把里面if的那一行删了就可以了
if
Sorry, something went wrong.
No branches or pull requests
自动运行的脚本状态一直是Skipped 之前没用过GitHub的action 不知道怎么调整 很抱歉问这个问题
The text was updated successfully, but these errors were encountered: