mirror of
https://github.com/GTNewHorizons/GTNH-Actions-Workflows.git
synced 2026-05-30 22:09:55 +02:00
23 lines
845 B
YAML
23 lines
845 B
YAML
name: Check state of other required PRs
|
|
|
|
on:
|
|
pull_request:
|
|
branches: [ master, main, release/** ]
|
|
|
|
jobs:
|
|
check-required-prs:
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- name: Check required PRs
|
|
uses: MalTeeez/packscripts@1.4.12
|
|
env:
|
|
NO_COLOR: 1
|
|
with:
|
|
command: >-
|
|
pr gate ${{ github.event.pull_request.html_url }}
|
|
--build_job "Build and test"
|
|
--other_allowed_owner "GTNewHorizons"
|
|
--allow_all_merged
|
|
github_token: ${{ secrets.GITHUB_TOKEN }}
|
|
config: https://raw.githubusercontent.com/MalTeeez/packscripts-auto-builds/refs/heads/gtnh-daily/packscripts.json
|
|
annotated_file: https://raw.githubusercontent.com/MalTeeez/packscripts-auto-builds/refs/heads/gtnh-daily/annotated_mods.json |