Skip to content
This repository has been archived by the owner on Apr 9, 2024. It is now read-only.

Commit

Permalink
Handle personal repos as well as organization repos
Browse files Browse the repository at this point in the history
  • Loading branch information
RupertBarrow authored Jan 17, 2024
1 parent 952abab commit 3558da1
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion utils/wait-for-workflows/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ runs:
// https://octokit.github.io/rest.js/v19#actions-list-workflow-runs-for-repo
const WORKFLOW_RUNS_FOR_REPO_RESPONSE = await github.rest.actions.listWorkflowRunsForRepo({
owner: context.payload.organization.login,
owner: context.payload.organization?.login || context.payload.sender?.login,
repo: context.payload.repository.name,
head_sha: context.payload.after || GITHUB_SHA
})
Expand Down

0 comments on commit 3558da1

Please sign in to comment.