Merge pull request #783 from emptyarrayhq/emptyarray-be #110
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Preview Branch Update | |
on: | |
push: | |
branches: | |
- preview | |
jobs: | |
trigger-pr-build-check: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Trigger PR Build and Sync Check for all PRs | |
run: | | |
gh pr list --state open --json number --jq '.[].number' | while read pr_number; do | |
gh workflow run "PR Build and Sync Check" -f pr_number="$pr_number" | |
done | |
env: | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} |