dae/.github/workflows/pr-build.yml
Kevin Yu bede3e4c92
ci(pr-build): fix default branch for seed workflow (#214)
* ci(pr-build): fix default branch for seed workflow

* ci(build): update downstream seed workflow ref

* chore: revert previous changes
2023-07-13 21:12:39 +08:00

42 lines
1.2 KiB
YAML

# _
# __| | __ _ ___
# / _` |/ _` |/ _ \
# | (_| | (_| | __/
# \__,_|\__,_|\___|
#
# Copyright (C) 2023 @daeuniverse <https://github.com/daeuniverse>
#
# This is a open-source software, liscensed under the AGPL-3.0 License.
# See /License for more information.
name: PR Build (Preview)
run-name: "#${{ github.event.pull_request.number }} - ${{ github.event.pull_request.title }} @${{ github.event.pull_request.head.ref }}:${{ github.event.pull_request.head.sha }}"
on:
pull_request:
types: [ opened, synchronize, reopened ]
paths:
- "**/*.go"
- "**/*.c"
- "**/*.h"
- "go.mod"
- "go.sum"
- ".github/workflows/pr-build.yml"
- ".github/workflows/seed-build.yml"
jobs:
pre-actions:
uses: daeuniverse/ci-seed-jobs/.github/workflows/pre-actions.yml@master
with:
repository: ${{ github.repository }}
ref: ${{ github.event.pull_request.head.sha }}
fetch-depth: 0
secrets: inherit
build:
uses: daeuniverse/dae/.github/workflows/seed-build.yml@main
with:
ref: ${{ github.event.pull_request.head.sha }}
pr_build: true
pr_number: ${{ github.event.pull_request.number }}