Skip to content
This repository has been archived by the owner on Nov 16, 2023. It is now read-only.

Commit

Permalink
feat: build for release
Browse files Browse the repository at this point in the history
  • Loading branch information
github-actions[bot] committed Jun 29, 2022
1 parent 53fc0d6 commit 9a9d963
Show file tree
Hide file tree
Showing 3 changed files with 108 additions and 82 deletions.
2 changes: 1 addition & 1 deletion build.json
@@ -1 +1 @@
{"owner":"technote-space","repo":"workflow-conclusion-action","sha":"6c0e0df4edbcffc1aca1c8b77d46c58c89221f1b","ref":"refs/tags/test/v3.0.1.2523410581","tagName":"test/v3.0.1.2523410581","branch":"gh-actions","tags":["test/v3.0.1.2523410581","test/v3.0.1","test/v3.0","test/v3"],"updated_at":"2022-06-19T09:03:21.755Z"}
{"owner":"technote-space","repo":"workflow-conclusion-action","sha":"af57bd6a0e6a8479f470accfa6bd7b816d93e61f","ref":"refs/tags/v3.0.1","tagName":"v3.0.1","branch":"gh-actions","tags":["v3.0.1","v3.0","v3"],"updated_at":"2022-06-29T06:23:04.088Z"}
25 changes: 23 additions & 2 deletions lib/main.js
Expand Up @@ -85250,6 +85250,12 @@ const Endpoints = {
createWorkflowDispatch: [
"POST /repos/{owner}/{repo}/actions/workflows/{workflow_id}/dispatches",
],
deleteActionsCacheById: [
"DELETE /repos/{owner}/{repo}/actions/caches/{cache_id}",
],
deleteActionsCacheByKey: [
"DELETE /repos/{owner}/{repo}/actions/caches{?key,ref}",
],
deleteArtifact: [
"DELETE /repos/{owner}/{repo}/actions/artifacts/{artifact_id}",
],
Expand Down Expand Up @@ -85294,6 +85300,7 @@ const Endpoints = {
enableWorkflow: [
"PUT /repos/{owner}/{repo}/actions/workflows/{workflow_id}/enable",
],
getActionsCacheList: ["GET /repos/{owner}/{repo}/actions/caches"],
getActionsCacheUsage: ["GET /repos/{owner}/{repo}/actions/cache/usage"],
getActionsCacheUsageByRepoForOrg: [
"GET /orgs/{org}/actions/cache/usage-by-repository",
Expand Down Expand Up @@ -85427,6 +85434,9 @@ const Endpoints = {
reviewPendingDeploymentsForRun: [
"POST /repos/{owner}/{repo}/actions/runs/{run_id}/pending_deployments",
],
setActionsOidcCustomIssuerPolicyForEnterprise: [
"PUT /enterprises/{enterprise}/actions/oidc/customization/issuer",
],
setAllowedActionsOrganization: [
"PUT /orgs/{org}/actions/permissions/selected-actions",
],
Expand Down Expand Up @@ -85677,6 +85687,9 @@ const Endpoints = {
"POST /repos/{owner}/{repo}/codespaces",
],
deleteForAuthenticatedUser: ["DELETE /user/codespaces/{codespace_name}"],
deleteFromOrganization: [
"DELETE /orgs/{org}/members/{username}/codespaces/{codespace_name}",
],
deleteRepoSecret: [
"DELETE /repos/{owner}/{repo}/codespaces/secrets/{secret_name}",
],
Expand Down Expand Up @@ -85706,6 +85719,7 @@ const Endpoints = {
"GET /repos/{owner}/{repo}/codespaces/devcontainers",
],
listForAuthenticatedUser: ["GET /user/codespaces"],
listInOrganization: ["GET /orgs/{org_id}/codespaces"],
listInRepositoryForAuthenticatedUser: [
"GET /repos/{owner}/{repo}/codespaces",
],
Expand All @@ -85725,6 +85739,9 @@ const Endpoints = {
],
startForAuthenticatedUser: ["POST /user/codespaces/{codespace_name}/start"],
stopForAuthenticatedUser: ["POST /user/codespaces/{codespace_name}/stop"],
stopInOrganization: [
"POST /orgs/{org}/members/{username}/codespaces/{codespace_name}/stop",
],
updateForAuthenticatedUser: ["PATCH /user/codespaces/{codespace_name}"],
},
dependabot: {
Expand Down Expand Up @@ -85762,6 +85779,9 @@ const Endpoints = {
],
},
dependencyGraph: {
createRepositorySnapshot: [
"POST /repos/{owner}/{repo}/dependency-graph/snapshots",
],
diffRange: [
"GET /repos/{owner}/{repo}/dependency-graph/compare/{basehead}",
],
Expand Down Expand Up @@ -86856,7 +86876,7 @@ const Endpoints = {
},
};

const VERSION$1 = "5.14.0";
const VERSION$1 = "5.16.0";

function endpointsToMethods(octokit, endpointsMap) {
const newMethods = {};
Expand Down Expand Up @@ -86943,7 +86963,7 @@ var distWeb$1 = /*#__PURE__*/Object.freeze({

var require$$3 = /*@__PURE__*/getAugmentedNamespace(distWeb$1);

const VERSION = "2.18.0";
const VERSION = "2.20.0";

/**
* Some “list” response that can be paginated have a different response structure
Expand Down Expand Up @@ -87090,6 +87110,7 @@ const paginatingEndpoints = [
"GET /notifications",
"GET /organizations",
"GET /organizations/{organization_id}/custom_roles",
"GET /orgs/{org_id}/codespaces",
"GET /orgs/{org}/actions/permissions/repositories",
"GET /orgs/{org}/actions/runner-groups",
"GET /orgs/{org}/actions/runner-groups/{runner_group_id}/repositories",
Expand Down

0 comments on commit 9a9d963

Please sign in to comment.