github action定时任务
创始人
2024-01-30 03:39:32
0

需求

  • 定时任务1 (8:00~13:00),执行bash脚本
  • 定时任务2 (18:00),修改定时任务1的执行时间

文档

  • workflows官方文档
  • workflows action uses查询
  • actions/checkout@v3
  • About the GITHUB_TOKEN secret

问题之refusing to allow a GitHub App to create or update workflow .github/workflows/schedule-action.yml without workflows permission

When you enable GitHub Actions, GitHub installs a GitHub App on your repository. The GITHUB_TOKEN secret is a GitHub App installation access token. You can use the installation access token to authenticate on behalf of the GitHub App installed on your repository. The token’s permissions are limited to the repository that contains your workflow.About the GITHUB_TOKEN secret

  1. 生成新的token(带workflow权限)
    在这里插入图片描述

  2. 配置action变量
    在这里插入图片描述

  3. 修改actions/checkout@v3 token

- uses: actions/checkout@v3with:token: ${{ secrets.WORKFLOW_TOKEN }}

脚本

name: schedule tasks
run-name: run schedule taskson:schedule:- cron: '0 0 * * *'- cron: '0 10 * * *'jobs:build:runs-on: ubuntu-lateststeps:- uses: actions/checkout@v3with:token: ${{ secrets.WORKFLOW_TOKEN }}- name: Run scheduleif: ${{ github.event_name == 'schedule' && github.event.schedule != '0 10 * * *' }}run: |cd runsh main.sh- name: Update scheduleif: ${{ github.event_name == 'schedule' && github.event.schedule == '0 10 * * *' }}run: |hour=$(($RANDOM%5))min=$(($RANDOM%59))sed -i "0,/cron/{s/- cron: '.*\* \* \*'/- cron: '${min} ${hour} * * *'/}" .github/workflows/schedule-actions.ymlgit config --global user.email ${{ secrets.GCON_USER_EMAIL }}git config --global user.name ${{ secrets.GCON_USER_NAME }}git add .git commit -m "update schedule to: ${min} ${hour} * * *"git pull --rebasegit push

GITHUB DEMO

相关内容

热门资讯

喜欢穿一身黑的男生性格(喜欢穿... 今天百科达人给各位分享喜欢穿一身黑的男生性格的知识,其中也会对喜欢穿一身黑衣服的男人人好相处吗进行解...
发春是什么意思(思春和发春是什... 本篇文章极速百科给大家谈谈发春是什么意思,以及思春和发春是什么意思对应的知识点,希望对各位有所帮助,...
网络用语zl是什么意思(zl是... 今天给各位分享网络用语zl是什么意思的知识,其中也会对zl是啥意思是什么网络用语进行解释,如果能碰巧...
为什么酷狗音乐自己唱的歌不能下... 本篇文章极速百科小编给大家谈谈为什么酷狗音乐自己唱的歌不能下载到本地?,以及为什么酷狗下载的歌曲不是...
华为下载未安装的文件去哪找(华... 今天百科达人给各位分享华为下载未安装的文件去哪找的知识,其中也会对华为下载未安装的文件去哪找到进行解...
怎么往应用助手里添加应用(应用... 今天百科达人给各位分享怎么往应用助手里添加应用的知识,其中也会对应用助手怎么添加微信进行解释,如果能...
家里可以做假山养金鱼吗(假山能... 今天百科达人给各位分享家里可以做假山养金鱼吗的知识,其中也会对假山能放鱼缸里吗进行解释,如果能碰巧解...
四分五裂是什么生肖什么动物(四... 本篇文章极速百科小编给大家谈谈四分五裂是什么生肖什么动物,以及四分五裂打一生肖是什么对应的知识点,希...
一帆风顺二龙腾飞三阳开泰祝福语... 本篇文章极速百科给大家谈谈一帆风顺二龙腾飞三阳开泰祝福语,以及一帆风顺二龙腾飞三阳开泰祝福语结婚对应...
美团联名卡审核成功待激活(美团... 今天百科达人给各位分享美团联名卡审核成功待激活的知识,其中也会对美团联名卡审核未通过进行解释,如果能...