mirror of
https://github.com/ivabus/pantry
synced 2024-11-10 18:45:19 +03:00
21 lines
485 B
YAML
21 lines
485 B
YAML
|
name: ci
|
||
|
on: pull_request
|
||
|
|
||
|
jobs:
|
||
|
get-diff:
|
||
|
runs-on: ubuntu-latest
|
||
|
outputs:
|
||
|
diff: ${{ steps.diff.outputs.diff }}
|
||
|
steps:
|
||
|
- uses: actions/checkout@v3
|
||
|
- uses: technote-space/get-diff-action@v6
|
||
|
id: diff
|
||
|
with:
|
||
|
PATTERNS: projects/**/package.yml
|
||
|
build:
|
||
|
needs: [get-diff]
|
||
|
uses: teaxyz/pantry.core/.github/workflows/build.yml@main
|
||
|
with:
|
||
|
projects: ${{ needs.get-diff.outputs.diff || 'zlib.net' }}
|
||
|
secrets: inherit
|