mirror of
https://github.com/openwrt/routing.git
synced 2026-07-12 22:44:51 +04:00
c787243110
- Enable bot comments to provide contributors with immediate feedback - Enable stale bot - Execute the feeds package test build only when the formalities check succeeds Signed-off-by: Josef Schlehofer <pepe.schlehofer@gmail.com>
27 lines
654 B
YAML
27 lines
654 B
YAML
name: Feeds Package Test Build
|
|
|
|
on:
|
|
pull_request:
|
|
|
|
permissions:
|
|
contents: read
|
|
checks: read
|
|
|
|
jobs:
|
|
wait-for-formalities:
|
|
name: Wait for FormalityCheck
|
|
runs-on: ubuntu-slim
|
|
steps:
|
|
- name: Wait for Check Run
|
|
uses: lewagon/wait-on-check-action@v1.8.1
|
|
with:
|
|
ref: ${{ github.event.pull_request.head.sha }}
|
|
check-name: 'FormalityCheck / Git & Commits'
|
|
repo-token: ${{ secrets.GITHUB_TOKEN }}
|
|
wait-interval: 5
|
|
|
|
build:
|
|
name: Feeds Package Test Build
|
|
needs: wait-for-formalities
|
|
uses: openwrt/actions-shared-workflows/.github/workflows/multi-arch-test-build.yml@main
|