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
主要的修改是:
有了这些修改,工作流现在会在以下情况下触发:
name: build Gmeek on: workflow_dispatch: push: branches: - main # 或者你的默认分支名称 issues: types: [opened, edited] schedule: - cron: "0 16 * * *" jobs: build: name: Generate blog runs-on: ubuntu-20.04 if: ${{ github.event.repository.owner.id == github.event.sender.id || github.event_name == 'schedule' || github.event_name == 'push' }} permissions: write-all steps: # ... 其余步骤保持不变
The text was updated successfully, but these errors were encountered:
schedule: - cron: "0 16 * * *"
定时触发一直都是这个,何来的错误?这个定时的作用是在北京时间每天零点执行一次,用于获取最新的评论数量,如果Gmeek有更新也会自动更新。
Sorry, something went wrong.
schedule: - cron: "0 16 * * *" 定时触发一直都是这个,何来的错误?这个定时的作用是在北京时间每天零点执行一次,用于获取最新的评论数量,如果Gmeek有更新也会自动更新。
我记错了hh,主要是增加了仓库代码更新了,就触发工作流
这个对与要经常修改static文件里面内容的,确实比较友好。不过我都是先在本地调试好了再传上去的。
No branches or pull requests
主要的修改是:
有了这些修改,工作流现在会在以下情况下触发:
The text was updated successfully, but these errors were encountered: