We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 64a141d commit ce763b9Copy full SHA for ce763b9
.github/workflows/preview-bazel-docs-pr.yml
@@ -18,13 +18,11 @@ jobs:
18
- uses: actions/github-script@v8
19
with:
20
script: |
21
- const prs = await github.rest.pulls.list({
+ const { data: prs } = await github.rest.pulls.list({
22
owner: 'bazelbuild',
23
repo: 'bazel',
24
since: new Date(Date.now() - 20 * 60 * 1000).toISOString(),
25
});
26
-
27
28
core.setOutput("pull_requests", JSON.stringify(prs.map(pr => ({
29
number: pr.number,
30
head_sha: pr.head.sha,
0 commit comments