添加backlinks 属性,控制是否显示反向链接 #679
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: 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"}' |