mirror of
https://github.com/Facepunch/sbox-public.git
synced 2026-01-02 11:28:19 -05:00
18 lines
445 B
YAML
18 lines
445 B
YAML
name: PR Triage
|
|
on:
|
|
pull_request_target:
|
|
types: [ labeled ]
|
|
|
|
jobs:
|
|
pr-triaged:
|
|
runs-on: ubuntu-latest
|
|
if: github.event.label.name == 'triaged'
|
|
steps:
|
|
- name: Repository Dispatch
|
|
uses: peter-evans/repository-dispatch@v4
|
|
with:
|
|
token: ${{ secrets.SBOXBOT_TOKEN }}
|
|
repository: Facepunch/sbox
|
|
event-type: pr-triaged
|
|
client-payload: '{"github": ${{ toJson(github) }}}'
|