Skip to content

小花日记

小花日记 #616

Workflow file for this run

name: Dispatch to repo
on: [push, workflow_dispatch]
jobs:
dispatch:
runs-on: ubuntu-latest
strategy:
matrix:
repo: ["CatCodeMe/catcodeme.github.io"]
steps:
- name: Push to repo
uses: peter-evans/repository-dispatch@v3
with:
token: ${{ secrets.gh_action_token_PAT }}
repository: ${{ matrix.repo }}
event-type: build
client-payload: '{"ref": "${{ github.ref }}", "sha": "${{ github.sha }}", "module": "content", "branch": "main"}'