mirror of
https://gitea.com/gitea/act
synced 2025-11-04 19:38:39 +00:00
Reusable workflows or manually triggered workflows may get data from [`inputs` context](https://docs.github.com/en/actions/reference/workflows-and-actions/contexts#inputs-context). For example: ``` name: Build run-name: Build app on ${{ inputs.os }} on: workflow_dispatch: inputs: os: description: Select the OS required: true type: choice options: - windows - linux ... ``` Reviewed-on: https://gitea.com/gitea/act/pulls/143 Reviewed-by: Lunny Xiao <xiaolunwen@gmail.com> Co-authored-by: Zettat123 <zettat123@gmail.com> Co-committed-by: Zettat123 <zettat123@gmail.com>