Skip to content
This repository has been archived by the owner on Apr 29, 2023. It is now read-only.

Update dependency renovate to v35.66.0 (#856) #2641

Update dependency renovate to v35.66.0 (#856)

Update dependency renovate to v35.66.0 (#856) #2641

---
name: update-package
on:
pull_request:
types:
- opened
- synchronize
- reopened
- closed
push:
branches:
- main
jobs:
# npm installを実行し、package.jsonやpackage-lock.jsonに差分があればPRを作る
update-package:
runs-on: ubuntu-latest
permissions:
contents: write
pull-requests: write
steps:
- uses: actions/checkout@v3.5.2
with:
fetch-depth: 0
ref: ${{ github.event.pull_request.head.sha }}
- uses: actions/setup-node@v3.6.0
with:
cache: npm
- run: npm install
- uses: dev-hato/actions-diff-pr-management@v1.1.3
with:
github-token: ${{secrets.GITHUB_TOKEN}}
branch-name-prefix: fix-package
pr-title-prefix: package.jsonやpackage-lock.jsonを直してあげたよ!
concurrency:
group: ${{ github.workflow }}-${{ github.event_name }}-${{ github.ref }}
cancel-in-progress: true