[component/tgui] minor tweak in vsf_tgui_sv_color_mix #2379
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: repository dispatch | |
on: | |
push: | |
branches: [ master ] | |
workflow_dispatch: | |
jobs: | |
trigger: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/github-script@v6 | |
with: | |
github-token: ${{ secrets.VSF_AIO }} | |
script: | | |
await github.rest.actions.createWorkflowDispatch({ | |
owner: 'vsf-linux', | |
repo: 'vsf.linux', | |
workflow_id: 'vsf-sync.yml', | |
ref: 'main' | |
}) | |
- uses: actions/github-script@v6 | |
with: | |
github-token: ${{ secrets.VSF_AIO }} | |
script: | | |
await github.rest.actions.createWorkflowDispatch({ | |
owner: 'vsfteam', | |
repo: 'vsfteam-hub-mirror', | |
workflow_id: 'gitee-sync.yml', | |
ref: 'master' | |
}) |