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
- Host: GitHub
- URL: https://github.com/actionsdesk/use-private-action
- Owner: ActionsDesk
- License: mit
- Created: 2021-09-15T15:57:20.000Z (almost 5 years ago)
- Default Branch: main
- Last Pushed: 2021-09-29T15:09:47.000Z (almost 5 years ago)
- Last Synced: 2024-11-17T00:19:53.086Z (over 1 year ago)
- Size: 20.5 KB
- Stars: 2
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
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}}
```