mirror of
https://github.com/occ-ai/obs-localvocal
synced 2024-11-07 18:57:14 +00:00
28 lines
717 B
YAML
28 lines
717 B
YAML
name: Pull Request
|
|
run-name: ${{ github.event.pull_request.title }} pull request run 🚀
|
|
on:
|
|
workflow_dispatch:
|
|
pull_request:
|
|
paths-ignore:
|
|
- '**.md'
|
|
branches: [master, main]
|
|
types: [ opened, synchronize, reopened ]
|
|
permissions:
|
|
contents: read
|
|
concurrency:
|
|
group: '${{ github.workflow }} @ ${{ github.event.pull_request.head.label || github.head_ref || github.ref }}'
|
|
cancel-in-progress: true
|
|
jobs:
|
|
check-format:
|
|
name: Check Formatting 🔍
|
|
uses: ./.github/workflows/check-format.yaml
|
|
permissions:
|
|
contents: read
|
|
|
|
build-project:
|
|
name: Build Project 🧱
|
|
uses: ./.github/workflows/build-project.yaml
|
|
secrets: inherit
|
|
permissions:
|
|
contents: read
|