Skip to content

Commit

Permalink
feat: create AC List Data updater
Browse files Browse the repository at this point in the history
  • Loading branch information
a01sa01to committed Feb 19, 2024
1 parent 3f38bc4 commit 0590eaf
Showing 1 changed file with 30 additions and 0 deletions.
30 changes: 30 additions & 0 deletions .github/workflows/update-data.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,30 @@
name: Update AC List Data

on:
schedule:
# 週 1 で commit する
- cron: "0 0 * * 0"
workflow_dispatch:

jobs:
update:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Setup Node
uses: actions/setup-node@v4
with:
node-version: 20
cache: yarn
- name: Install deps
run: yarn install
- name: Update data
run: yarn update-data
- name: Create Pull Request
uses: peter-evans/create-pull-request@v6
with:
token: ${{ secrets.GITHUB_TOKEN }}
commit-message: "chore: update AC List Data"
title: "[Auto] Update AC List Data"
branch-suffix: "short-commit-hash"

0 comments on commit 0590eaf

Please sign in to comment.