Skip to content

Commit

Permalink
feat(typescript): add created parameter to `octokit.actions.listWor…
Browse files Browse the repository at this point in the history
…kflowRuns()` and `octokit.actions.listWorkflowRunsForRepo()` (#409)
  • Loading branch information
octokitbot authored Jul 21, 2021
1 parent 8de3196 commit a61eeb2
Show file tree
Hide file tree
Showing 6 changed files with 656 additions and 604 deletions.
4 changes: 2 additions & 2 deletions docs/ghe-222.md
Original file line number Diff line number Diff line change
Expand Up @@ -205,8 +205,8 @@ octokit.actions.listSelectedReposForOrgSecret({org, secret_name, page, per_page}
octokit.actions.listSelfHostedRunnersForOrg({org, per_page, page});
octokit.actions.listSelfHostedRunnersForRepo({owner, repo, per_page, page});
octokit.actions.listWorkflowRunArtifacts({owner, repo, run_id, per_page, page});
octokit.actions.listWorkflowRuns({owner, repo, workflow_id, actor, branch, event, status, per_page, page});
octokit.actions.listWorkflowRunsForRepo({owner, repo, actor, branch, event, status, per_page, page});
octokit.actions.listWorkflowRuns({owner, repo, workflow_id, actor, branch, event, status, per_page, page, created});
octokit.actions.listWorkflowRunsForRepo({owner, repo, actor, branch, event, status, per_page, page, created});
octokit.actions.reRunWorkflow({owner, repo, run_id});
octokit.actions.removeSelectedRepoFromOrgSecret({org, secret_name, repository_id});
octokit.actions.setSelectedReposForOrgSecret({org, secret_name, selected_repository_ids});
Expand Down
4 changes: 2 additions & 2 deletions docs/ghe-30.md
Original file line number Diff line number Diff line change
Expand Up @@ -244,8 +244,8 @@ octokit.actions.listSelectedRepositoriesEnabledGithubActionsOrganization({org, p
octokit.actions.listSelfHostedRunnersForOrg({org, per_page, page});
octokit.actions.listSelfHostedRunnersForRepo({owner, repo, per_page, page});
octokit.actions.listWorkflowRunArtifacts({owner, repo, run_id, per_page, page});
octokit.actions.listWorkflowRuns({owner, repo, workflow_id, actor, branch, event, status, per_page, page});
octokit.actions.listWorkflowRunsForRepo({owner, repo, actor, branch, event, status, per_page, page});
octokit.actions.listWorkflowRuns({owner, repo, workflow_id, actor, branch, event, status, per_page, page, created});
octokit.actions.listWorkflowRunsForRepo({owner, repo, actor, branch, event, status, per_page, page, created});
octokit.actions.reRunWorkflow({owner, repo, run_id});
octokit.actions.removeSelectedRepoFromOrgSecret({org, secret_name, repository_id});
octokit.actions.setAllowedActionsOrganization({org, github_owned_allowed, patterns_allowed});
Expand Down
Loading

0 comments on commit a61eeb2

Please sign in to comment.