mirror of
https://github.com/ps5-linux/ps5-linux-patches.git
synced 2026-07-16 06:00:40 +00:00
20 lines
432 B
YAML
20 lines
432 B
YAML
name: deploy
|
|
|
|
on:
|
|
workflow_dispatch:
|
|
push:
|
|
branches: [main]
|
|
pull_request_target:
|
|
types: [labeled]
|
|
branches: [main]
|
|
|
|
jobs:
|
|
kernel:
|
|
if: github.event.label.name == 'run-ci' || github.event_name != 'pull_request_target'
|
|
permissions:
|
|
contents: write
|
|
uses: ./.github/workflows/build-kernel.yml
|
|
with:
|
|
patches_ref: ${{ github.event.pull_request.head.sha || github.sha }}
|
|
secrets: inherit
|