mirror of
https://github.com/GreemDev/Ryujinx
synced 2024-11-22 01:43:23 +01:00
25 lines
414 B
YAML
25 lines
414 B
YAML
name: Build PR
|
|
|
|
on:
|
|
pull_request:
|
|
branches: [ master ]
|
|
paths:
|
|
- '**'
|
|
- '!.github/**'
|
|
- '!*.yml'
|
|
- '!*.config'
|
|
- '!*.md'
|
|
- '.github/workflows/*.yml'
|
|
|
|
permissions:
|
|
pull-requests: write
|
|
checks: write
|
|
|
|
concurrency:
|
|
group: pr-checks-${{ github.event.number }}
|
|
cancel-in-progress: true
|
|
|
|
jobs:
|
|
pr_build:
|
|
uses: ./.github/workflows/build.yml
|
|
secrets: inherit
|