Update dependencies #374
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: Update dependencies | |
on: | |
workflow_dispatch: | |
schedule: | |
# Runs at 00:00 JST every day | |
- cron: '0 15 * * *' | |
jobs: | |
update: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v2 | |
- name: Install Deno | |
uses: denoland/setup-deno@v1 | |
- name: Update Dependencies | |
run: | | |
deno run -A https://fresh.deno.dev/update . | |
- name: Create pull request | |
uses: peter-evans/create-pull-request@v3 | |
with: | |
token: ${{ secrets.GITHUB_TOKEN }} | |
commit-message: 'chore(deps): 依存関係を更新' | |
title: 'chore: 依存関係を更新' | |
body: 'This pull request was auto-generated by GitHub Actions.' | |
branch: update-dependencies |