1
0
mirror of synced 2025-12-19 18:10:59 -05:00

Add some JSON as a reusable as a bug workaround (#55829)

This commit is contained in:
Ben Ahmady
2025-05-28 14:13:36 +01:00
committed by GitHub
parent 0d5ebb626e
commit 63d10c7005
2 changed files with 7 additions and 6 deletions

View File

@@ -35,12 +35,7 @@ For an example {% data variables.product.prodname_actions %} workflow using the
For example, you can set `iss` to `https://token.actions.githubusercontent.com`, and the `repository` to something like "octo-org/octo-repo"`. This will ensure only Actions workflows from the specified repository will have access to your JFrog platform. The following is an example Claims JSON when configuring identity mappings. For example, you can set `iss` to `https://token.actions.githubusercontent.com`, and the `repository` to something like "octo-org/octo-repo"`. This will ensure only Actions workflows from the specified repository will have access to your JFrog platform. The following is an example Claims JSON when configuring identity mappings.
```json copy {% data reusables.actions.jfrog-json-configuring-identity-mappings %}
{
"iss": "https://token.actions.githubusercontent.com",
"repository": "octo-org/octo-repo"
}
```
## Adding the identity provider to JFrog ## Adding the identity provider to JFrog

View File

@@ -0,0 +1,6 @@
```json copy
{
"iss": "https://token.actions.githubusercontent.com",
"repository": "octo-org/octo-repo"
}
```