An open API service indexing awesome lists of open source software.

https://github.com/actionsdesk/use-private-action

Provides an interface to use actions stored in private repositories
https://github.com/actionsdesk/use-private-action

Last synced: 10 months ago
JSON representation

Provides an interface to use actions stored in private repositories

Awesome Lists containing this project

README

          

# use-private-action

> TLDR; A composite action that will clone a private/internal action (from an organization) and use it. Provides a simple interface as close as possible to the native workflow syntax.

## Usage

```yaml
on: [push]

jobs:
build:
runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v2
- uses: ActionsDesk/use-private-action@main
with:
uses: ORG/PRIVATE_ACTION_NAME@v1
github_app_id: ${{secrets.APP_ID}}
github_app_private_key: ${{secrets.APP_PRIVATE_KEY}}
```