mirror of
https://github.com/got-feedBack/feedBack-desktop.git
synced 2026-08-11 11:19:24 +00:00
23 lines
621 B
YAML
23 lines
621 B
YAML
name: Ship CI
|
|
|
|
# PRs into both main and release/** run CI through this wrapper so the check
|
|
# run is named "CI / check" (reusable-workflow caller prefix from the `CI`
|
|
# job), matching the org rulesets' required context. ci.yml itself only
|
|
# triggers via workflow_call — it never runs standalone, which would emit an
|
|
# unprefixed "check" the rulesets can't match.
|
|
on:
|
|
pull_request:
|
|
branches: [main, 'release/**']
|
|
workflow_dispatch:
|
|
|
|
concurrency:
|
|
group: ship-ci-${{ github.workflow }}-${{ github.ref }}
|
|
cancel-in-progress: true
|
|
|
|
permissions:
|
|
contents: read
|
|
|
|
jobs:
|
|
CI:
|
|
uses: ./.github/workflows/ci.yml
|