@@ -28,13 +28,13 @@ jobs:
|
28 | 28 | - name: Get Pull Requests |
29 | 29 | id: get_prs_for_ci |
30 | 30 | run: > |
31 | | - numbers=$(gh pr list \ |
32 | | - --repo ${{ github.repository }} \ |
| 31 | + echo "numbers=$(gh pr list \ |
| 32 | + --repo "$GITHUB_REPOSITORY" \ |
33 | 33 | --label 'request-ci' \ |
34 | 34 | --json 'number' \ |
| 35 | + --search 'review:approved' \ |
35 | 36 | -t '{{ range . }}{{ .number }} {{ end }}' \ |
36 | | - --limit 5) |
37 | | - echo "numbers=$numbers" >> $GITHUB_OUTPUT |
| 37 | + --limit 5)" >> "$GITHUB_OUTPUT" |
38 | 38 | env: |
39 | 39 | GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} |
40 | 40 | start-ci: |
|