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

Auto Update

Auto Update #170

Workflow file for this run

name:Auto Update
# Controls when the workflow will run
on:
workflow_dispatch:# Allows workflow to be manually triggered from Actions page
schedule:
-cron:"0 0 * * 0"# Runs every Sunday at midnight
jobs:
npm-upgrade:
runs-on:ubuntu-latest
steps:
-uses:actions/checkout@v5
-name:Setup node
uses:actions/setup-node@v6.0.0
with:
node-version:18
-name:Update dependencies
run:npm upgrade
-uses:tibdex/github-app-token@v2
id:generate-token
with:
app_id:${{ secrets.APP_ID }}
private_key:${{ secrets.APP_PRIVATE_KEY }}
-name:Create Pull Request
uses:peter-evans/create-pull-request@v7
with:
title:"Auto NPM Update"
body:"This PR was created automatically by the Auto Update workflow."
signoff:true
commit-message:"Update dependencies via `npm upgrade`."
branch:"create-pull-request/auto-update/npm"
branch-suffix:"timestamp"
labels:"auto-update,dependencies,javascript"
delete-branch:true
token:${{ steps.generate-token.outputs.token }}

[8]ページ先頭

©2009-2025 Movatter.jp