Start acceptance environment #1
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
on: | |
workflow_dispatch: | |
inputs: | |
branch: | |
description: 'Branch name' | |
required: true | |
type: string | |
days_active: | |
description: 'Days active' | |
required: true | |
type: string | |
jobs: | |
run: | |
runs-on: ubuntu-latest | |
steps: | |
- run: | | |
echo "Branch name: $BRANCH" | |
echo "Days active: $DAYS_ACTIVE" | |
env: | |
BRANCH: ${{ inputs.branch }} | |
DAYS_ACTIVE: ${{ inputs.days_active }} |