https://github.com/fullstack-devops/awesome-ci-action
A GitHub Action to use the Awesome CI in your workflow
https://github.com/fullstack-devops/awesome-ci-action
List: awesome-ci-action
Last synced: 3 days ago
JSON representation
A GitHub Action to use the Awesome CI in your workflow
- Host: GitHub
- URL: https://github.com/fullstack-devops/awesome-ci-action
- Owner: fullstack-devops
- License: apache-2.0
- Created: 2022-01-15T19:00:00.000Z (over 4 years ago)
- Default Branch: main
- Last Pushed: 2025-03-18T20:42:57.000Z (about 1 year ago)
- Last Synced: 2026-04-19T19:08:28.587Z (30 days ago)
- Language: TypeScript
- Size: 115 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
- Code of conduct: docs/CODE_OF_CONDUCT.md
Awesome Lists containing this project
README
# awesome-ci-action
A GitHub Action to use the Awesome CI in your workflow
## Usage
### Inputs
- `version`: The chart-releaser version to use (default: 1.7.2)
### Environment variables
- `GITHUB_TOKEN` (required): The GitHub token of this repository (`${{ secrets.GITHUB_TOKEN }}`)
### Example Workflow
Create a workflow (eg: `.github/workflows/release.yml`):
```yaml
name: PullRequest
on:
jobs:
release:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v2
- name: Setup awesome-ci
uses: fullstack-devops/awesome-ci-action@main
- name: set build Infos
run: awesome-ci pr info -number ${{ github.event.pull_request.number }}
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
```
For information and options see [awesome-ci](https://github.com/fullstack-devops/awesome-ci).