Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/unleash/pipeline-action
Updates pipeline with build status
https://github.com/unleash/pipeline-action
Last synced: 7 days ago
JSON representation
Updates pipeline with build status
- Host: GitHub
- URL: https://github.com/unleash/pipeline-action
- Owner: Unleash
- License: mit
- Created: 2023-05-26T08:37:58.000Z (over 1 year ago)
- Default Branch: main
- Last Pushed: 2023-07-20T14:16:01.000Z (over 1 year ago)
- Last Synced: 2024-04-14T06:00:04.648Z (7 months ago)
- Language: JavaScript
- Size: 334 KB
- Stars: 0
- Watchers: 3
- Forks: 0
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# pipeline-action
This action posts BuildInfo to [Unleash pipeline](https://github.com/bricks-softwar`e/unleash-pipeline). The buildinfo contains enough information for pipeline to add another entry for the project it receives the data for.
## Inputs
### `shaMinLength`
**Optional** How many characters to keep of the commit sha. Default `"7"`. Beware though, this does not do any effort to keep the sha unique unlike what `git rev-parse --short=7 HEAD` would do. It simply performs `substring(0, shaMinLength)` on the sha of the repo. So if your project has tens of thousands of commits you might want to override this### `project`
**Required** The name of the pipeline project this update should be posted for. E.g. `unleash-edge` or `unleash-cloud`### `image`
**Required** The unique docker identifier for your image. E.g. `unleashorg/unleash-server` or `.dkr.ecr..amazonaws.com/unleash-edge`### `tag`
**Optional** The unique tag for your image. Defaults to `sha-`### `pipelineUrl`
**Optional** The target of the buildinfo update. Defaults to `https://sandbox.getunleash.io/pipeline/build_info`