timed-cli #364
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: timed-cli | |
on: | |
schedule: | |
- cron: '0 0 * * *' | |
push: | |
branches: | |
- main | |
jobs: | |
generate: | |
permissions: write-all | |
runs-on: ubuntu-latest | |
timeout-minutes: 5 | |
steps: | |
- name: Checkout Repository | |
uses: actions/checkout@v4 | |
env: | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
- name: Create Branch | |
uses: actions/github-script@v7 | |
env: | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
with: | |
script: | | |
const { owner, repo } = context.repo | |
const option = { owner, repo } | |
const author = { name: 'biaov', email: 'biaov@qq.com' } | |
const covering = num => `${num < 10 ? 0 : ''}${num}` | |
const curDate = new Date() | |
const curDateFormat = `${covering(curDate.getFullYear())}-${covering(curDate.getMonth() + 1)}-${covering(curDate.getDate())} ${covering(curDate.getHours())}:${covering( | |
curDate.getMinutes() | |
)}:${covering(curDate.getSeconds())}` | |
const content = `更新时间: ${curDateFormat}` | |
const branchName = `feature/${+curDate}/auto-create` | |
const baseRef = 'main' | |
const { data: readmeCont } = await github.rest.repos.getContent({ ...option, ref: 'main', path: 'README.md' }) | |
const newReadmeCont = Buffer.from(readmeCont.content, 'base64') | |
.toString() | |
.replace(/(?<=签到\+)\d+/, value => `${+value + 1}`) | |
const { data: commitData } = await github.rest.repos.getCommit({ ...option, ref: 'main' }) | |
const { data: branchData } = await github.rest.git.createRef({ ...option, ref: `refs/heads/${branchName}`, sha: commitData.sha }) | |
const { data: getTreeData } = await github.rest.git.getTree({ ...option, tree_sha: branchData.object.sha }) | |
const { data: blobData } = await github.rest.git.createBlob({ ...option, content }) | |
const { data: readmeBlobData } = await github.rest.git.createBlob({ ...option, content: newReadmeCont }) | |
const { data: treeData } = await github.rest.git.createTree({ | |
...option, | |
base_tree: getTreeData.sha, | |
tree: [ | |
{ path: 'automatic-daily-updates.txt', sha: blobData.sha }, | |
{ path: 'README.md', sha: readmeBlobData.sha } | |
].map(item => ({ ...item, mode: '100644', type: 'blob' })) | |
}) | |
const { data: newCommitData } = await github.rest.git.createCommit({ ...option, message: content, author, tree: treeData.sha, parents: [getTreeData.sha] }) | |
await github.rest.git.updateRef({ ...option, ref: `heads/${branchName}`, sha: newCommitData.sha, force: true }) | |
const { data: prData } = await github.rest.pulls.create({ ...option, title: `自动创建分支${branchName}`, head: `biaov:${branchName}`, base: baseRef, body: `自动创建分支${branchName}` }) | |
await github.rest.pulls.merge({ ...option, pull_number: prData.number }) |