mirror of
https://github.com/sp-tarkov/server.git
synced 2025-02-12 16:50:43 -05:00
- Replaces the Gitea workflows with Github workflows. - Adds a Github issue template. (The reason this is being done directly on master is because it's the branch that the issue templates load from.)
23 lines
524 B
YAML
23 lines
524 B
YAML
name: Trigger Main Build Pipeline
|
|
|
|
on:
|
|
push:
|
|
tags:
|
|
- "*"
|
|
|
|
jobs:
|
|
trigger-main-build:
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- name: Trigger Build Workflow
|
|
uses: peter-evans/repository-dispatch@v3
|
|
with:
|
|
token: ${{ secrets.BUILD_REPO_ACCESS_TOKEN }}
|
|
repository: sp-tarkov/build
|
|
event-type: build-trigger
|
|
client-payload: |
|
|
{
|
|
"repository": "${{ github.repository }}",
|
|
"tag": "${{ github.ref_name }}"
|
|
}
|