Files
gamedir/.github/workflows/trigger-source.yml
T
2026-07-28 10:55:18 -03:00

31 lines
693 B
YAML

name: trigger-source
on:
push:
branches:
- 'main'
- 'master'
permissions:
actions: write
jobs:
trigger:
runs-on: ubuntu-latest
if: github.repository_owner == '1dot13'
steps:
- uses: actions/github-script@v8
with:
# add a valid token as secret to 1dot13 organisation
github-token: ${{ secrets.DISPATCH_1DOT13_SOURCE }}
script: |
github.rest.actions.createWorkflowDispatch({
owner: '1dot13',
repo: 'source',
workflow_id: 'release.yml',
ref: 'master',
inputs: {
assemble_release: true
}
});