Skip to content

Sync the character list #2794

Sync the character list

Sync the character list #2794

Workflow file for this run

name: Sync the character list
on:
push:
branches:
- main
schedule:
- cron: 0 3,4,13,14 * * *
workflow_dispatch:
concurrency:
group: ${{ github.head_ref || github.ref }}
cancel-in-progress: true
jobs:
sync:
runs-on: ubuntu-22.04
steps:
- uses: actions/checkout@v4
with:
ref: ${{ inputs.ref }}
- name: Sync
run: |
make synclist
- name: Create Pull Request
uses: peter-evans/create-pull-request@v6
with:
token: ${{ secrets.SYNC_PR_PAT }}
commit-message: update characters.yml
branch: ci/sync-character-list
delete-branch: true
title: 'chore: update characters.yml'
body: |
Update characters.yml
This PR is auto-generated by [create-pull-request][1]
[1]: https://github.com/peter-evans/create-pull-request
assignees: homuler