Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/jupiterone/integration-workflow-action
https://github.com/jupiterone/integration-workflow-action
Last synced: 7 days ago
JSON representation
- Host: GitHub
- URL: https://github.com/jupiterone/integration-workflow-action
- Owner: JupiterOne
- Created: 2021-04-19T18:01:25.000Z (over 3 years ago)
- Default Branch: main
- Last Pushed: 2023-12-05T17:50:14.000Z (11 months ago)
- Last Synced: 2023-12-05T18:50:44.785Z (11 months ago)
- Size: 3.91 KB
- Stars: 0
- Watchers: 15
- Forks: 2
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- Codeowners: CODEOWNERS
Awesome Lists containing this project
README
# @jupiterone/integration-workflow-action
A public github action used to build & publish open-source JupiterOne integration projects.
Usage:
`.github/workflows/build.yml`:
```yml
name: Build
on: [push, pull_request]
jobs:
integration-workflow-action:
runs-on: ubuntu-latest
steps:
- id: setup-node
name: Setup Node
uses: actions/setup-node@v1
with:
node-version: 12.x
- name: Check out code repository source code
uses: actions/checkout@v2
- id: integration-workflow-action
name: J1 Integration Workflow Action
uses: jupiterone/integration-workflow-action@v1
with:
NPM_AUTH_TOKEN: ${{ secrets.NPM_AUTH_TOKEN }}
```