Movatterモバイル変換


[0]ホーム

URL:


Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Sign up
Appearance settings

Cron Update Next

Cron Update Next #29218

name:Cron Update Next
on:
# Allow manual runs
workflow_dispatch:
# Run every 10 minutes https://crontab.guru/every-10-minutes
schedule:
-cron:'*/10 * * * *'
jobs:
create-pull-request:
runs-on:ubuntu-latest
steps:
-name:Checkout
uses:actions/checkout@v4
# 0 means fetch all commits so we can commit and push in the script below
with:
fetch-depth:0
-name:Install latest corepack
run:npm install -g corepack@latest
-name:Enable corepack
run:corepack enable pnpm
-name:Create Pull Request
uses:actions/github-script@v7
env:
NODE_AUTH_TOKEN:${{ secrets.NPM_TOKEN }}
GITHUB_TOKEN:${{ secrets.GH_TOKEN_PULL_REQUESTS }}
# See https://github.com/actions/github-script#run-a-separate-file-with-an-async-function
with:
github-token:${{ secrets.GH_TOKEN_PULL_REQUESTS }}
script:|
const script = require('./utils/update-next.js')
await script({ github, context, tag: 'canary' })

[8]ページ先頭

©2009-2025 Movatter.jp