有关 with 语法的更多信息,请参阅“GitHub Actions 的工作流程语法”。 inputs: numOctocats: description: 'Number of Octocats' required: false default: '1' octocatEyeColor: description: 'Eye color of the Octocats' required: true 在指定工作流程文件中输入或者使用默认输入值时,GitHub 将为...
# action.ymlname:'Hello World'description:'Greet someone and record the time'inputs:who-to-greet:# id of inputdescription:'Who to greet'required:truedefault:'World'outputs:time:# id of outputdescription:'The time we greeted you'runs:using:'docker'image:'Dockerfile'args:-${{ inputs.who-...
on: workflow_dispatch: inputs: logLevel: description: 'Log level' required: true default: 'warning' tags: description: 'Test scenario tags' 除了workflow_dispatch 之外,您還可以使用 GitHub API 來觸發稱為 repository_dispatch 的Webhook 事件。 此事件可讓您針對在 GitHub 外部發生的活動觸發工作...
on:workflow_dispatch:inputs:logLevel:description:'Log level'required:truedefault:'warning'tags:description:'Test scenario tags' 除了workflow_dispatch之外,你还可以使用 GitHub API 触发名为repository_dispatch的 Webhook 事件。 此事件可以让你为发生在 GitHub 外部的活动触发工作流,它实际上是对存储库发出一...
在执行 workflow 时, 允许在 GitHub Actions 页面输入参数,控制执行逻辑。我们可以将人工处理的逻辑,在 GitHub Actions 参数化执行,适用于持续部署场景。 on: workflow_dispatch: inputs: logLevel: description: 'Log level' required: true default: 'warning' ...
在被调用的工作流中,可以使用 inputs 上下文来引用输入。 有关详细信息,请参阅“上下文”。 如果调用方工作流程传递的输入未在被调用工作流程中指定,则会导致错误。 on.workflow_call.inputs 的示例 on: workflow_call: inputs: username: description: 'A username passed from the caller workflow' de...
在执行 workflow 时, 允许在 GitHub Actions 页面输入参数,控制执行逻辑。我们可以将人工处理的逻辑,在 GitHub Actions 参数化执行,适用于持续部署场景。 on: workflow_dispatch: inputs: logLevel: description: 'Log level' required: true default: 'warning' ...
Github Actions 支持 jobs..if (opens new window)语法 Github Actions运行中我们可以拿到一些当前的环境信息,比如git的提交内容信息,通过这些内容来控制actions的执行 比如,当git message不包含wip才触发构建 代码语言:javascript 复制 jobs:format:runs-on:ubuntu-latestif:"! contains(github.event.head_commit.messag...
在执行 workflow 时, 允许在 GitHub Actions 页面输入参数,控制执行逻辑。我们可以将人工处理的逻辑,在 GitHub Actions 参数化执行,适用于持续部署场景。 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 on: workflow_dispatch: inputs: logLevel: description: 'Log level' required: true default: 'warning...
The value of url can be an expression. Allowed expression contexts: github, inputs, vars, needs, strategy, matrix, job, runner, and env. For more information about expressions, github doc 使用公共的action jobs:my_first_job:steps:-name:My first step# Uses the default branch of a public ...