Skip to content

fullstack-devops/awesome-ci-action

Use this GitHub action with your project
Add this Action to an existing workflow or create a new one
View on Marketplace

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

61 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

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.6.0)

Environment variables

  • GITHUB_TOKEN (required): The GitHub token of this repository (${{ secrets.GITHUB_TOKEN }})

Example Workflow

Create a workflow (eg: .github/workflows/release.yml):

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.