Merge origin/main into enterprise-app-enterprise-slug
Co-authored-by: Copilot <223556219+Copilot@users.noreply.github.com>
This commit is contained in:
@@ -12,6 +12,6 @@ jobs:
|
|||||||
id-token: write
|
id-token: write
|
||||||
packages: write
|
packages: write
|
||||||
steps:
|
steps:
|
||||||
- uses: actions/checkout@v4
|
- uses: actions/checkout@v6
|
||||||
- name: Publish Immutable Action
|
- name: Publish Immutable Action
|
||||||
uses: actions/publish-immutable-action@v0.0.4
|
uses: actions/publish-immutable-action@v0.0.4
|
||||||
|
|||||||
@@ -3,7 +3,9 @@ name: release
|
|||||||
on:
|
on:
|
||||||
push:
|
push:
|
||||||
branches:
|
branches:
|
||||||
|
- "*.x"
|
||||||
- main
|
- main
|
||||||
|
- beta
|
||||||
|
|
||||||
permissions:
|
permissions:
|
||||||
contents: write
|
contents: write
|
||||||
@@ -16,14 +18,14 @@ jobs:
|
|||||||
runs-on: ubuntu-latest
|
runs-on: ubuntu-latest
|
||||||
steps:
|
steps:
|
||||||
# build local version to create token
|
# build local version to create token
|
||||||
- uses: actions/checkout@v4
|
- uses: actions/checkout@v6
|
||||||
with:
|
with:
|
||||||
persist-credentials: false
|
persist-credentials: false
|
||||||
|
|
||||||
- uses: actions/setup-node@v4
|
- uses: actions/setup-node@v6
|
||||||
with:
|
with:
|
||||||
node-version-file: .node-version
|
node-version-file: package.json
|
||||||
cache: 'npm'
|
|
||||||
|
|
||||||
- run: npm ci
|
- run: npm ci
|
||||||
- run: npm run build
|
- run: npm run build
|
||||||
|
|||||||
@@ -0,0 +1,34 @@
|
|||||||
|
# This workflow warns and then closes issues that have had no activity for a specified amount of time.
|
||||||
|
# https://github.com/actions/stale
|
||||||
|
|
||||||
|
name: Stale
|
||||||
|
|
||||||
|
on:
|
||||||
|
workflow_dispatch:
|
||||||
|
schedule:
|
||||||
|
# 00:00 UTC on Mondays
|
||||||
|
- cron: '0 0 * * 1'
|
||||||
|
|
||||||
|
permissions:
|
||||||
|
issues: write
|
||||||
|
pull-requests: write
|
||||||
|
|
||||||
|
env:
|
||||||
|
DAYS_BEFORE_STALE: 180
|
||||||
|
DAYS_BEFORE_CLOSE: 60
|
||||||
|
STALE_LABEL: 'stale'
|
||||||
|
STALE_LABEL_URL: ${{github.server_url}}/${{github.repository}}/labels/stale
|
||||||
|
|
||||||
|
jobs:
|
||||||
|
stale:
|
||||||
|
runs-on: ubuntu-latest
|
||||||
|
steps:
|
||||||
|
- uses: actions/stale@v10
|
||||||
|
with:
|
||||||
|
operations-per-run: 100
|
||||||
|
days-before-stale: ${{ env.DAYS_BEFORE_STALE }}
|
||||||
|
days-before-close: ${{ env.DAYS_BEFORE_CLOSE }}
|
||||||
|
stale-issue-label: ${{ env.STALE_LABEL }}
|
||||||
|
stale-pr-label: ${{ env.STALE_LABEL }}
|
||||||
|
stale-issue-message: 'This issue has been marked ${{ env.STALE_LABEL_URL }} because it has been open for ${{ env.DAYS_BEFORE_STALE }} days with no activity. Please close this issue if it is no longer needed. If this issue is still relevant and you would like it to remain open, simply update it within the next ${{ env.DAYS_BEFORE_CLOSE }} days.'
|
||||||
|
stale-pr-message: 'This pull request has been marked ${{ env.STALE_LABEL_URL }} because it has been open for ${{ env.DAYS_BEFORE_STALE }} days with no activity. Please close this pull request if it is no longer needed. If this pull request is still relevant and you would like it to remain open, simply update it within the next ${{ env.DAYS_BEFORE_CLOSE }} days.'
|
||||||
+10
-11
@@ -5,6 +5,7 @@ on:
|
|||||||
branches:
|
branches:
|
||||||
- main
|
- main
|
||||||
pull_request:
|
pull_request:
|
||||||
|
merge_group:
|
||||||
workflow_dispatch:
|
workflow_dispatch:
|
||||||
|
|
||||||
concurrency:
|
concurrency:
|
||||||
@@ -16,30 +17,28 @@ permissions:
|
|||||||
|
|
||||||
jobs:
|
jobs:
|
||||||
integration:
|
integration:
|
||||||
name: Integration
|
name: integration
|
||||||
runs-on: ubuntu-latest
|
runs-on: ubuntu-latest
|
||||||
steps:
|
steps:
|
||||||
- uses: actions/checkout@v4
|
- uses: actions/checkout@v6
|
||||||
|
|
||||||
- uses: actions/setup-node@v4
|
- uses: actions/setup-node@v6
|
||||||
with:
|
with:
|
||||||
node-version-file: .node-version
|
node-version-file: package.json
|
||||||
cache: 'npm'
|
|
||||||
|
|
||||||
- run: npm ci
|
- run: npm ci
|
||||||
- run: npm test
|
- run: npm test
|
||||||
|
|
||||||
end-to-end:
|
end-to-end:
|
||||||
name: End-to-End
|
name: end-to-end
|
||||||
runs-on: ubuntu-latest
|
runs-on: ubuntu-latest
|
||||||
# do not run from forks, as forks don’t have access to repository secrets
|
# do not run from forks, as forks don’t have access to repository secrets
|
||||||
if: github.event.pull_request.head.repo.owner.login == github.event.pull_request.base.repo.owner.login
|
if: github.event_name == 'merge_group' || github.event.pull_request.head.repo.owner.login == github.event.pull_request.base.repo.owner.login
|
||||||
steps:
|
steps:
|
||||||
- uses: actions/checkout@v4
|
- uses: actions/checkout@v6
|
||||||
- uses: actions/setup-node@v4
|
- uses: actions/setup-node@v6
|
||||||
with:
|
with:
|
||||||
node-version: 20
|
node-version-file: package.json
|
||||||
cache: "npm"
|
|
||||||
- run: npm ci
|
- run: npm ci
|
||||||
- run: npm run build
|
- run: npm run build
|
||||||
- uses: ./ # Uses the action in the root directory
|
- uses: ./ # Uses the action in the root directory
|
||||||
|
|||||||
@@ -13,21 +13,30 @@ concurrency:
|
|||||||
|
|
||||||
permissions:
|
permissions:
|
||||||
contents: write
|
contents: write
|
||||||
|
pull-requests: write
|
||||||
|
|
||||||
jobs:
|
jobs:
|
||||||
update-permission-inputs:
|
update-permission-inputs:
|
||||||
runs-on: ubuntu-latest
|
runs-on: ubuntu-latest
|
||||||
|
env:
|
||||||
|
COMMIT_MESSAGE: 'feat: update permission inputs'
|
||||||
steps:
|
steps:
|
||||||
- uses: actions/checkout@v4
|
- uses: actions/checkout@v6
|
||||||
- uses: actions/setup-node@v4
|
- uses: actions/setup-node@v6
|
||||||
with:
|
with:
|
||||||
node-version-file: .node-version
|
node-version-file: package.json
|
||||||
cache: 'npm'
|
|
||||||
- name: Install dependencies
|
- name: Install dependencies
|
||||||
run: npm ci
|
run: npm ci
|
||||||
- name: Run permission inputs update script
|
- name: Run permission inputs update script
|
||||||
run: node scripts/update-permission-inputs.js
|
run: node scripts/update-permission-inputs.js
|
||||||
- name: Commit changes
|
- name: Commit changes
|
||||||
uses: stefanzweifel/git-auto-commit-action@b863ae1933cb653a53c021fe36dbb774e1fb9403 # v5.2.0
|
id: auto-commit
|
||||||
|
uses: stefanzweifel/git-auto-commit-action@04702edda442b2e678b25b537cec683a1493fcb9 # v7.1.0
|
||||||
with:
|
with:
|
||||||
commit_message: 'feat: update permission inputs'
|
commit_message: ${{ env.COMMIT_MESSAGE }}
|
||||||
|
- name: Update PR title
|
||||||
|
if: github.event_name == 'pull_request' && steps.auto-commit.outputs.changes_detected == 'true'
|
||||||
|
env:
|
||||||
|
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
|
||||||
|
run: |
|
||||||
|
gh pr edit ${{ github.event.pull_request.number }} --title "${{ env.COMMIT_MESSAGE }}"
|
||||||
|
|||||||
@@ -1 +0,0 @@
|
|||||||
20.9.0
|
|
||||||
+5
-1
@@ -40,12 +40,16 @@ inputs:
|
|||||||
description: "The level of permission to grant the access token to create, edit, delete, and list Codespaces. Can be set to 'read' or 'write'."
|
description: "The level of permission to grant the access token to create, edit, delete, and list Codespaces. Can be set to 'read' or 'write'."
|
||||||
permission-contents:
|
permission-contents:
|
||||||
description: "The level of permission to grant the access token for repository contents, commits, branches, downloads, releases, and merges. Can be set to 'read' or 'write'."
|
description: "The level of permission to grant the access token for repository contents, commits, branches, downloads, releases, and merges. Can be set to 'read' or 'write'."
|
||||||
|
permission-custom-properties-for-organizations:
|
||||||
|
description: "The level of permission to grant the access token to view and edit custom properties for an organization, when allowed by the property. Can be set to 'read' or 'write'."
|
||||||
permission-dependabot-secrets:
|
permission-dependabot-secrets:
|
||||||
description: "The level of permission to grant the access token to manage Dependabot secrets. Can be set to 'read' or 'write'."
|
description: "The level of permission to grant the access token to manage Dependabot secrets. Can be set to 'read' or 'write'."
|
||||||
permission-deployments:
|
permission-deployments:
|
||||||
description: "The level of permission to grant the access token for deployments and deployment statuses. Can be set to 'read' or 'write'."
|
description: "The level of permission to grant the access token for deployments and deployment statuses. Can be set to 'read' or 'write'."
|
||||||
permission-email-addresses:
|
permission-email-addresses:
|
||||||
description: "The level of permission to grant the access token to manage the email addresses belonging to a user. Can be set to 'read' or 'write'."
|
description: "The level of permission to grant the access token to manage the email addresses belonging to a user. Can be set to 'read' or 'write'."
|
||||||
|
permission-enterprise-custom-properties-for-organizations:
|
||||||
|
description: "The level of permission to grant the access token for organization custom properties management at the enterprise level. Can be set to 'read', 'write', or 'admin'."
|
||||||
permission-environments:
|
permission-environments:
|
||||||
description: "The level of permission to grant the access token for managing repository environments. Can be set to 'read' or 'write'."
|
description: "The level of permission to grant the access token for managing repository environments. Can be set to 'read' or 'write'."
|
||||||
permission-followers:
|
permission-followers:
|
||||||
@@ -71,7 +75,7 @@ inputs:
|
|||||||
permission-organization-custom-org-roles:
|
permission-organization-custom-org-roles:
|
||||||
description: "The level of permission to grant the access token for custom organization roles management. Can be set to 'read' or 'write'."
|
description: "The level of permission to grant the access token for custom organization roles management. Can be set to 'read' or 'write'."
|
||||||
permission-organization-custom-properties:
|
permission-organization-custom-properties:
|
||||||
description: "The level of permission to grant the access token for custom property management. Can be set to 'read', 'write', or 'admin'."
|
description: "The level of permission to grant the access token for repository custom properties management at the organization level. Can be set to 'read', 'write', or 'admin'."
|
||||||
permission-organization-custom-roles:
|
permission-organization-custom-roles:
|
||||||
description: "The level of permission to grant the access token for custom repository roles management. Can be set to 'read' or 'write'."
|
description: "The level of permission to grant the access token for custom repository roles management. Can be set to 'read' or 'write'."
|
||||||
permission-organization-events:
|
permission-organization-events:
|
||||||
|
|||||||
Vendored
+18849
-13447
File diff suppressed because one or more lines are too long
Vendored
+18620
-13089
File diff suppressed because one or more lines are too long
+6
-5
@@ -115,12 +115,12 @@ export async function main(
|
|||||||
permissions
|
permissions
|
||||||
),
|
),
|
||||||
{
|
{
|
||||||
shouldRetry: (error) => error.status >= 500,
|
shouldRetry: ({ error }) => error.status >= 500,
|
||||||
onFailedAttempt: (error) => {
|
onFailedAttempt: (context) => {
|
||||||
core.info(
|
core.info(
|
||||||
`Failed to create token for "${parsedRepositoryNames.join(
|
`Failed to create token for "${parsedRepositoryNames.join(
|
||||||
","
|
","
|
||||||
)}" (attempt ${error.attemptNumber}): ${error.message}`
|
)}" (attempt ${context.attemptNumber}): ${context.error.message}`
|
||||||
);
|
);
|
||||||
},
|
},
|
||||||
retries: 3,
|
retries: 3,
|
||||||
@@ -131,9 +131,9 @@ export async function main(
|
|||||||
({ authentication, installationId, appSlug } = await pRetry(
|
({ authentication, installationId, appSlug } = await pRetry(
|
||||||
() => getTokenFromOwner(request, auth, parsedOwner, permissions),
|
() => getTokenFromOwner(request, auth, parsedOwner, permissions),
|
||||||
{
|
{
|
||||||
onFailedAttempt: (error) => {
|
onFailedAttempt: (context) => {
|
||||||
core.info(
|
core.info(
|
||||||
`Failed to create token for "${parsedOwner}" (attempt ${error.attemptNumber}): ${error.message}`
|
`Failed to create token for "${parsedOwner}" (attempt ${context.attemptNumber}): ${context.error.message}`
|
||||||
);
|
);
|
||||||
},
|
},
|
||||||
retries: 3,
|
retries: 3,
|
||||||
@@ -225,6 +225,7 @@ async function getTokenFromEnterprise(request, auth, enterpriseSlug, permissions
|
|||||||
installation.account?.slug === enterpriseSlug
|
installation.account?.slug === enterpriseSlug
|
||||||
);
|
);
|
||||||
|
|
||||||
|
/* c8 ignore next 3 */
|
||||||
if (!enterpriseInstallation) {
|
if (!enterpriseInstallation) {
|
||||||
throw new Error(`No enterprise installation found matching the name ${enterpriseSlug}. Available installations: ${response.data.map(i => `${i.target_type}:${i.account?.login || 'N/A'}`).join(', ')}`);
|
throw new Error(`No enterprise installation found matching the name ${enterpriseSlug}. Available installations: ${response.data.map(i => `${i.target_type}:${i.account?.login || 'N/A'}`).join(', ')}`);
|
||||||
}
|
}
|
||||||
|
|||||||
+1
-1
@@ -1,4 +1,4 @@
|
|||||||
import core from "@actions/core";
|
import * as core from "@actions/core";
|
||||||
import { request } from "@octokit/request";
|
import { request } from "@octokit/request";
|
||||||
import { ProxyAgent, fetch as undiciFetch } from "undici";
|
import { ProxyAgent, fetch as undiciFetch } from "undici";
|
||||||
|
|
||||||
|
|||||||
@@ -1,6 +1,6 @@
|
|||||||
// @ts-check
|
// @ts-check
|
||||||
|
|
||||||
import core from "@actions/core";
|
import * as core from "@actions/core";
|
||||||
import { createAppAuth } from "@octokit/auth-app";
|
import { createAppAuth } from "@octokit/auth-app";
|
||||||
|
|
||||||
import { getPermissionsFromInputs } from "./lib/get-permissions-from-inputs.js";
|
import { getPermissionsFromInputs } from "./lib/get-permissions-from-inputs.js";
|
||||||
@@ -42,7 +42,7 @@ export default main(
|
|||||||
request,
|
request,
|
||||||
skipTokenRevoke,
|
skipTokenRevoke,
|
||||||
).catch((error) => {
|
).catch((error) => {
|
||||||
/* c8 ignore next 3 */
|
/* c8 ignore next 5 */
|
||||||
console.error(error);
|
console.error(error);
|
||||||
// Don't set failed in test mode (when GITHUB_OUTPUT is undefined)
|
// Don't set failed in test mode (when GITHUB_OUTPUT is undefined)
|
||||||
if (process.env.GITHUB_OUTPUT !== undefined) {
|
if (process.env.GITHUB_OUTPUT !== undefined) {
|
||||||
|
|||||||
Generated
+346
-338
File diff suppressed because it is too large
Load Diff
+22
-14
@@ -2,8 +2,12 @@
|
|||||||
"name": "create-github-app-token",
|
"name": "create-github-app-token",
|
||||||
"private": true,
|
"private": true,
|
||||||
"type": "module",
|
"type": "module",
|
||||||
"version": "2.1.2",
|
"version": "2.2.2",
|
||||||
"description": "GitHub Action for creating a GitHub App Installation Access Token",
|
"description": "GitHub Action for creating a GitHub App Installation Access Token",
|
||||||
|
"engines": {
|
||||||
|
"node": ">=20"
|
||||||
|
},
|
||||||
|
"packageManager": "npm@10.9.4",
|
||||||
"scripts": {
|
"scripts": {
|
||||||
"build": "esbuild main.js post.js --bundle --outdir=dist --out-extension:.js=.cjs --platform=node --target=node20.0.0 --packages=bundle",
|
"build": "esbuild main.js post.js --bundle --outdir=dist --out-extension:.js=.cjs --platform=node --target=node20.0.0 --packages=bundle",
|
||||||
"test": "c8 --100 ava tests/index.js",
|
"test": "c8 --100 ava tests/index.js",
|
||||||
@@ -12,27 +16,31 @@
|
|||||||
},
|
},
|
||||||
"license": "MIT",
|
"license": "MIT",
|
||||||
"dependencies": {
|
"dependencies": {
|
||||||
"@actions/core": "^1.11.1",
|
"@actions/core": "^3.0.0",
|
||||||
"@octokit/auth-app": "^7.2.1",
|
"@octokit/auth-app": "^8.2.0",
|
||||||
"@octokit/request": "^9.2.2",
|
"@octokit/request": "^10.0.8",
|
||||||
"p-retry": "^6.2.1",
|
"p-retry": "^7.1.1",
|
||||||
"undici": "^7.8.0"
|
"undici": "^7.24.1"
|
||||||
},
|
},
|
||||||
"devDependencies": {
|
"devDependencies": {
|
||||||
"@octokit/openapi": "^19.1.0",
|
"@octokit/openapi": "^21.0.0",
|
||||||
"@sinonjs/fake-timers": "^14.0.0",
|
"@sinonjs/fake-timers": "^15.1.0",
|
||||||
"ava": "^6.3.0",
|
"ava": "^6.4.1",
|
||||||
"c8": "^10.1.3",
|
"c8": "^10.1.3",
|
||||||
"dotenv": "^16.5.0",
|
"dotenv": "^17.3.1",
|
||||||
"esbuild": "^0.25.5",
|
"esbuild": "^0.27.3",
|
||||||
"execa": "^9.6.0",
|
"execa": "^9.6.1",
|
||||||
"open-cli": "^8.0.0",
|
"open-cli": "^8.0.0",
|
||||||
"yaml": "^2.8.0"
|
"yaml": "^2.8.2"
|
||||||
},
|
},
|
||||||
"release": {
|
"release": {
|
||||||
"branches": [
|
"branches": [
|
||||||
"+([0-9]).x",
|
"+([0-9]).x",
|
||||||
"main"
|
"main",
|
||||||
|
{
|
||||||
|
"name": "beta",
|
||||||
|
"prerelease": true
|
||||||
|
}
|
||||||
],
|
],
|
||||||
"plugins": [
|
"plugins": [
|
||||||
"@semantic-release/commit-analyzer",
|
"@semantic-release/commit-analyzer",
|
||||||
|
|||||||
@@ -1,6 +1,6 @@
|
|||||||
// @ts-check
|
// @ts-check
|
||||||
|
|
||||||
import core from "@actions/core";
|
import * as core from "@actions/core";
|
||||||
|
|
||||||
import { post } from "./lib/post.js";
|
import { post } from "./lib/post.js";
|
||||||
import request from "./lib/request.js";
|
import request from "./lib/request.js";
|
||||||
|
|||||||
@@ -187,6 +187,14 @@
|
|||||||
"write"
|
"write"
|
||||||
]
|
]
|
||||||
},
|
},
|
||||||
|
"custom_properties_for_organizations": {
|
||||||
|
"type": "string",
|
||||||
|
"description": "The level of permission to grant the access token to view and edit custom properties for an organization, when allowed by the property.",
|
||||||
|
"enum": [
|
||||||
|
"read",
|
||||||
|
"write"
|
||||||
|
]
|
||||||
|
},
|
||||||
"members": {
|
"members": {
|
||||||
"type": "string",
|
"type": "string",
|
||||||
"description": "The level of permission to grant the access token for organization teams and members.",
|
"description": "The level of permission to grant the access token for organization teams and members.",
|
||||||
@@ -221,7 +229,7 @@
|
|||||||
},
|
},
|
||||||
"organization_custom_properties": {
|
"organization_custom_properties": {
|
||||||
"type": "string",
|
"type": "string",
|
||||||
"description": "The level of permission to grant the access token for custom property management.",
|
"description": "The level of permission to grant the access token for repository custom properties management at the organization level.",
|
||||||
"enum": [
|
"enum": [
|
||||||
"read",
|
"read",
|
||||||
"write",
|
"write",
|
||||||
@@ -384,6 +392,15 @@
|
|||||||
"read",
|
"read",
|
||||||
"write"
|
"write"
|
||||||
]
|
]
|
||||||
|
},
|
||||||
|
"enterprise_custom_properties_for_organizations": {
|
||||||
|
"type": "string",
|
||||||
|
"description": "The level of permission to grant the access token for organization custom properties management at the enterprise level.",
|
||||||
|
"enum": [
|
||||||
|
"read",
|
||||||
|
"write",
|
||||||
|
"admin"
|
||||||
|
]
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
"example": {
|
"example": {
|
||||||
|
|||||||
+22
-22
@@ -44,17 +44,17 @@ Generated by [AVA](https://avajs.dev).
|
|||||||
> stderr
|
> stderr
|
||||||
|
|
||||||
`Error: No enterprise installation found matching the name test-enterprise. Available installations: Organization:some-org, User:some-user␊
|
`Error: No enterprise installation found matching the name test-enterprise. Available installations: Organization:some-org, User:some-user␊
|
||||||
at getTokenFromEnterprise (file:///Users/s/dev/create-github-app-token/lib/main.js:229:11)␊
|
at getTokenFromEnterprise (file:///Users/parkerbxyz/.copilot/worktrees/create-github-app-token/pr-263/lib/main.js:230:11)␊
|
||||||
at process.processTicksAndRejections (node:internal/process/task_queues:105:5)␊
|
at process.processTicksAndRejections (node:internal/process/task_queues:104:5)␊
|
||||||
at async RetryOperation._fn (file:///Users/s/dev/create-github-app-token/node_modules/p-retry/index.js:55:20) {␊
|
at async pRetry (file:///Users/parkerbxyz/.copilot/worktrees/create-github-app-token/pr-263/node_modules/p-retry/index.js:197:19)␊
|
||||||
attemptNumber: 1,␊
|
at async main (file:///Users/parkerbxyz/.copilot/worktrees/create-github-app-token/pr-263/lib/main.js:95:52)␊
|
||||||
retriesLeft: 3␊
|
at async test (file:///Users/parkerbxyz/.copilot/worktrees/create-github-app-token/pr-263/tests/main.js:111:3)␊
|
||||||
}`
|
at async file:///Users/parkerbxyz/.copilot/worktrees/create-github-app-token/pr-263/tests/main-enterprise-installation-not-found.test.js:5:1`
|
||||||
|
|
||||||
> stdout
|
> stdout
|
||||||
|
|
||||||
`Creating enterprise installation token for enterprise "test-enterprise".␊
|
`Creating enterprise installation token for enterprise "test-enterprise".␊
|
||||||
Failed to create token for enterprise "test-enterprise" (attempt 1): No enterprise installation found matching the name test-enterprise. Available installations: Organization:some-org, User:some-user␊
|
Failed to create token for enterprise "test-enterprise" (attempt 1): undefined␊
|
||||||
--- REQUESTS ---␊
|
--- REQUESTS ---␊
|
||||||
GET /app/installations`
|
GET /app/installations`
|
||||||
|
|
||||||
@@ -63,11 +63,11 @@ Generated by [AVA](https://avajs.dev).
|
|||||||
> stderr
|
> stderr
|
||||||
|
|
||||||
`Error: Cannot use 'enterprise-slug' input with 'owner' or 'repositories' inputs␊
|
`Error: Cannot use 'enterprise-slug' input with 'owner' or 'repositories' inputs␊
|
||||||
at main (file:///Users/s/dev/create-github-app-token/lib/main.js:31:11)␊
|
at main (file:///Users/parkerbxyz/.copilot/worktrees/create-github-app-token/pr-263/lib/main.js:31:11)␊
|
||||||
at file:///Users/s/dev/create-github-app-token/main.js:33:16␊
|
at file:///Users/parkerbxyz/.copilot/worktrees/create-github-app-token/pr-263/main.js:33:16␊
|
||||||
at ModuleJob.run (node:internal/modules/esm/module_job:274:25)␊
|
at ModuleJob.run (node:internal/modules/esm/module_job:430:25)␊
|
||||||
at async onImport.tracePromise.__proto__ (node:internal/modules/esm/loader:644:26)␊
|
at async onImport.tracePromise.__proto__ (node:internal/modules/esm/loader:639:26)␊
|
||||||
at async file:///Users/s/dev/create-github-app-token/tests/main-enterprise-mutual-exclusivity-both.test.js:13:3`
|
at async file:///Users/parkerbxyz/.copilot/worktrees/create-github-app-token/pr-263/tests/main-enterprise-mutual-exclusivity-both.test.js:13:3`
|
||||||
|
|
||||||
> stdout
|
> stdout
|
||||||
|
|
||||||
@@ -78,11 +78,11 @@ Generated by [AVA](https://avajs.dev).
|
|||||||
> stderr
|
> stderr
|
||||||
|
|
||||||
`Error: Cannot use 'enterprise-slug' input with 'owner' or 'repositories' inputs␊
|
`Error: Cannot use 'enterprise-slug' input with 'owner' or 'repositories' inputs␊
|
||||||
at main (file:///Users/s/dev/create-github-app-token/lib/main.js:31:11)␊
|
at main (file:///Users/parkerbxyz/.copilot/worktrees/create-github-app-token/pr-263/lib/main.js:31:11)␊
|
||||||
at file:///Users/s/dev/create-github-app-token/main.js:33:16␊
|
at file:///Users/parkerbxyz/.copilot/worktrees/create-github-app-token/pr-263/main.js:33:16␊
|
||||||
at ModuleJob.run (node:internal/modules/esm/module_job:274:25)␊
|
at ModuleJob.run (node:internal/modules/esm/module_job:430:25)␊
|
||||||
at async onImport.tracePromise.__proto__ (node:internal/modules/esm/loader:644:26)␊
|
at async onImport.tracePromise.__proto__ (node:internal/modules/esm/loader:639:26)␊
|
||||||
at async file:///Users/s/dev/create-github-app-token/tests/main-enterprise-mutual-exclusivity-owner.test.js:12:3`
|
at async file:///Users/parkerbxyz/.copilot/worktrees/create-github-app-token/pr-263/tests/main-enterprise-mutual-exclusivity-owner.test.js:12:3`
|
||||||
|
|
||||||
> stdout
|
> stdout
|
||||||
|
|
||||||
@@ -93,11 +93,11 @@ Generated by [AVA](https://avajs.dev).
|
|||||||
> stderr
|
> stderr
|
||||||
|
|
||||||
`Error: Cannot use 'enterprise-slug' input with 'owner' or 'repositories' inputs␊
|
`Error: Cannot use 'enterprise-slug' input with 'owner' or 'repositories' inputs␊
|
||||||
at main (file:///Users/s/dev/create-github-app-token/lib/main.js:31:11)␊
|
at main (file:///Users/parkerbxyz/.copilot/worktrees/create-github-app-token/pr-263/lib/main.js:31:11)␊
|
||||||
at file:///Users/s/dev/create-github-app-token/main.js:33:16␊
|
at file:///Users/parkerbxyz/.copilot/worktrees/create-github-app-token/pr-263/main.js:33:16␊
|
||||||
at ModuleJob.run (node:internal/modules/esm/module_job:274:25)␊
|
at ModuleJob.run (node:internal/modules/esm/module_job:430:25)␊
|
||||||
at async onImport.tracePromise.__proto__ (node:internal/modules/esm/loader:644:26)␊
|
at async onImport.tracePromise.__proto__ (node:internal/modules/esm/loader:639:26)␊
|
||||||
at async file:///Users/s/dev/create-github-app-token/tests/main-enterprise-mutual-exclusivity-repositories.test.js:12:3`
|
at async file:///Users/parkerbxyz/.copilot/worktrees/create-github-app-token/pr-263/tests/main-enterprise-mutual-exclusivity-repositories.test.js:12:3`
|
||||||
|
|
||||||
> stdout
|
> stdout
|
||||||
|
|
||||||
|
|||||||
Binary file not shown.
Reference in New Issue
Block a user