mirror of
https://github.com/NatsumeLS/Gakumas-Translation-Data-EN.git
synced 2026-02-04 17:14:02 +00:00
33 lines
624 B
YAML
33 lines
624 B
YAML
name: Dispatch
|
|
|
|
on: [push, pull_request, workflow_dispatch]
|
|
|
|
jobs:
|
|
validate:
|
|
|
|
runs-on: ubuntu-latest
|
|
|
|
steps:
|
|
- name: Checkout
|
|
uses: actions/checkout@v4
|
|
|
|
- name: Validate
|
|
id: json-yaml-validate
|
|
uses: GrantBirki/json-yaml-validate@v3
|
|
with:
|
|
use_gitignore: false
|
|
|
|
dispatch:
|
|
|
|
runs-on: ubuntu-latest
|
|
|
|
needs: validate
|
|
|
|
steps:
|
|
- name: Dispatch Update Submodule to Gakumas-Localify-EN
|
|
uses: peter-evans/repository-dispatch@v3
|
|
with:
|
|
token: ${{ secrets.PAT }}
|
|
repository: NatsumeLS/Gakumas-Localify-EN
|
|
event-type: update-submodule
|