Sync the character list #2762
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: 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 |