Extends GitHub Action UI replacing plain text input fields to the dropdown.
Go to the top right corner of the browser you are using and click on the extension logo. A screen will popup with tag options. Choose the right tags for you and save it.
This action might require reloading the GitHub workflow tab.
- Add inputs separated by
commas
and the default value bytag
e.g.brackets
.
gh-action-dropdown-list-input.yml
name: gh-action-dropdown-list-input
on:
workflow_dispatch:
inputs:
environment:
description: 'Environment'
required: true
default: 'dev,staging,[uat],prod'
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Print environment
run: echo ${{ github.event.inputs.environment }}
# Chrome
make package-chrome
# Firefox
make package-firefox
Apache 2 Licensed. See LICENSE for full details.