在运行工作流程时,可以将这些输入的值传递给工作流程。 此工作流随后使用 inputs.logLevel、inputs.tags 和inputs.environment 上下文属性将值输出到日志。on: workflow_dispatch: inputs: logLevel: description: 'Log level' required: true default: 'warning' type: choice options: - info - warning - ...
on.workflow_dispatch.inputs 的示例 on: workflow_dispatch: inputs: logLevel: description: 'Log level' required: true default: 'warning' type: choice options: - info - warning - debug print_tags: description: 'True to print to STDOUT' required: true type: boolean tags: description: ...
on.workflow_call.secrets.<secret_id>.required on.workflow_run.<branches|branches-ignore> on.workflow_dispatch on.workflow_dispatch.inputs on.workflow_dispatch.inputs.<input_id>.required on.workflow_dispatch.inputs.<input_id>.type permissions env defaults defaults.run defaults.run.shell defaults.ru...
workflow_call workflow_dispatch workflow_run About events that trigger workflowsWorkflow triggers are events that cause a workflow to run. For more information about how to use workflow triggers, see Triggering a workflow.Some events have multiple activity types. For these events, you can specify ...
So, a workflow has a state. It can only be in one state at a time. When a workflow changes state, we call that a transition. Transitions occur on an event, so events cause transitions to occur. Additionally, when an event fires, other arbitrary code can be executed, we call those ac...
Make— The workflow automation tool lets you connect apps and automate workflows using UI. It supports many apps and the most popular APIs. Free for public GitHub repositories, and free tier with 100 Mb, 1000 Operations, and 15 minutes of minimum interval. Spacelift - Management platform for ...
workflow_dispatch: inputs: ENVIRONMENT: type: choice options: - qa - dev - test - prod jobs: SETVARS: runs-on: 'mywindowsrunner' outputs: # outputxmlpath: $env:XML_PATH myvar: ${{ inputs.ENVIRONMENT }} steps: - name: Set environment variable for XML_PATH ...
首先需要的第一步是活的当前项目的提交历史列表。 然后在特定的版本后,选择 <> 标记,进入这个版本...
By default, you will have immediately available a local dashboard. Netdata starts a web server for its dashboard at port19999. Open up your web browser of choice and navigate tohttp://NODE:19999, replacingNODEwith the IP address or hostname of your Agent. If installed on localhost, you ...
# todoon:workflow_dispatch:inputs:logLevel:description:'Log level'required:truedefault:'warning'type:choiceoptions:-info-warning-debugtags:description:'Test scenario tags'required:falsetype:booleanenvironment:description:'Environment to run tests against'type:environmentrequired:truejobs:log-the-inputs:run...