mirror of
https://github.com/Facepunch/sbox-public.git
synced 2025-12-23 22:48:07 -05:00
18 lines
441 B
YAML
18 lines
441 B
YAML
name: Pull Request
|
|
on:
|
|
pull_request:
|
|
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) }}}'
|