Skip to content

Latest commit

 

History

History
21 lines (17 loc) · 506 Bytes

README.md

File metadata and controls

21 lines (17 loc) · 506 Bytes

cicd-check-parameter

Github action to checking pipelines parameters

jobs:
  check-parameters:
    runs-on: ubuntu-latest
    steps:
      - uses: actions/checkout@v3
      
      - name: Check parameters
        uses: steplix/[email protected]
        id: args
        with:
          param-0: minor
          param-1: skip-pipeline
    
      - name: See output
        run: echo "Parameter 0 = ${{ steps.args.outputs.param-0 }} \n Parameter 1 = ${{ steps.args.outputs.param-1 }}