Exclude pull requests from actions/runs request

This will save time when fetcing the current run and we
don't use the pull requests for anything anyway. It is
ok to leave out.
This commit is contained in:
Andrew Eisenberg 2022-04-07 13:52:29 -07:00
parent a0b596246a
commit 426a3951ee
3 changed files with 3 additions and 3 deletions

2
lib/actions-util.js generated
View file

@ -357,7 +357,7 @@ async function getWorkflowPath() {
const repo = repo_nwo[1];
const run_id = Number((0, util_1.getRequiredEnvParam)("GITHUB_RUN_ID"));
const apiClient = api.getActionsApiClient();
const runsResponse = await apiClient.request("GET /repos/:owner/:repo/actions/runs/:run_id", {
const runsResponse = await apiClient.request("GET /repos/:owner/:repo/actions/runs/:run_id?exclude_pull_requests=true", {
owner,
repo,
run_id,

File diff suppressed because one or more lines are too long

View file

@ -424,7 +424,7 @@ async function getWorkflowPath(): Promise<string> {
const apiClient = api.getActionsApiClient();
const runsResponse = await apiClient.request(
"GET /repos/:owner/:repo/actions/runs/:run_id",
"GET /repos/:owner/:repo/actions/runs/:run_id?exclude_pull_requests=true",
{
owner,
repo,