github-app-token icon indicating copy to clipboard operation
github-app-token copied to clipboard

Impersonate a GitHub App in a GitHub Action

Results 19 github-app-token issues
Sort by recently updated
recently updated
newest added
trafficstars

Resolves #42 This adds a `github_url` parameter to the inputs so the baseUrl parameter for Octokit can be overridden. Currently it defaults to the GitHub Actions-supplied environment variable that contains...

We're currently working on a workflow that involves automating acceptance tests for a staging deployment of GitHub Enterprise. The tests are run from our primary GitHub Enterprise server while the...

according to https://docs.github.com/en/actions/using-workflows/reusing-workflows#using-inputs-and-secrets-in-a-reusable-workflow private_key should be in secrets If I put the action into my reusable workflow GitHub automatically removes private_key input and I get the error: ``` Run tibdex/[email protected]...

Hey 👋 Would it be possible to add `yarn.lock` to the `files` in package.json? In a world where supply chain security becomes more prevalent, it would be nice to be...

The intent of this PR is to support running github-app-token behind a proxy.

Issue: The part of the action that creates installation token does not work behind a proxy. Reason: That part uses the @Octokit/request library to make a request to the access_token...

GitHub made recent changes where the default GITHUB_TOKEN may trigger other workflows using a workflow_dispatch or repository_dispatch event trigger. Relevant blog post: https://github.blog/changelog/2022-09-08-github-actions-use-github_token-with-workflow_dispatch-and-repository_dispatch/

Hello, is it possible to use the action without mentioning a repository so that the token is valid for multiple repositories the app has permissions to? I get the following...

The [readme](https://github.com/tibdex/github-app-token/blob/main/README.md) in this repo links to an old version of the docs: https://web.archive.org/web/20230115194214/https://docs.github.com/en/issues/planning-and-tracking-with-projects/automating-your-project/automating-projects-using-actions#example-workflow-authenticating-with-a-github-app ...which have now been updated here: https://docs.github.com/en/issues/planning-and-tracking-with-projects/automating-your-project/automating-projects-using-actions#example-workflow-authenticating-with-a-github-app ...to use the new official action: - https://github.com/actions/create-github-app-token ...which...

## What? Add an optional input `repository_ids`, which is a list of repository IDs that the token should have access to. https://docs.github.com/en/rest/apps/apps?apiVersion=2022-11-28#create-an-installation-access-token-for-an-app ```yaml repository_ids: >- [${{github.repository_id}}] ``` ## Why? To...