注:GitHub Enterprise Server 2.22 上的 GitHub Actions 支持是有限的公测版。 测试已结束。 GitHub Actions 现在一般可用于 GitHub Enterprise Server 3.0 或更新版本。 更多信息请参阅 GitHub Enterprise Server 3.0 发行说明。
- 有关升级到 GitHub Enterprise Server 3.0 或更新版本的更多信息,请参阅“升级 GitHub Enterprise Server”。
- 有关在升级后配置 GitHub Actions 的更多信息,请参阅 GitHub Enterprise Server 3.0 的文档。
注: GitHub 托管的运行器目前在 GitHub Enterprise Server 上不受支持。 您可以在 GitHub 公共路线图 上查看有关未来支持计划的更多信息。
概览
Workflow templates allow everyone in your organization who has permission to create workflows to do so more quickly and easily. When you create a new workflow, you can choose a template and some or all of the work of writing the workflow will be done for you. 您可以使用工作流程模板作为基础来构建自定义工作流程,或按原样使用模板。 This not only saves time, it promotes consistency and best practice across your organization.
创建工作流程模板
对组织的 .github
仓库具有写入权限的用户可以创建工作流程模板。 然后,有权限创建工作流程的组织成员便可使用这些模板。 You can share workflow templates if your organization's repository is public or if the repository is private and on an Enterprise plan.
此过程展示如何创建工作流程模板和元数据文件。 元数据文件描述在用户新建工作流程时如何向其显示模板。
-
如果组织中没有名为
.github
的公共仓库,请新建一个。 -
创建一个名为
workflow-templates
的目录。 -
在
workflow-templates
目录中创建新的工作流程文件。如果需要引用仓库的默认分支,可以使用
$default-branch
占位符。 使用模板创建工作流程时,占位符将自动替换为仓库默认分支的名称。例如,下面这个名为
octo-organization-ci.yml
的文件展示了一个基本的工作流程。name: Octo Organization CI on: push: branches: [ $default-branch ] pull_request: branches: [ $default-branch ] jobs: build: runs-on: ubuntu-latest steps: - uses: actions/checkout@v2 - name: Run a one-line script run: echo Hello from Octo Organization
-
在
workflow-templates
目录中创建元数据文件。 元数据文件必须与工作流程文件同名,但扩展名不是.yml
,而必须附加.properties.json
。 例如,下面这个名为octo-organization-ci.properties.json
的文件包含名为octo-organization-ci.yml
的工作流程文件的元数据:{ "name": "Octo Organization Workflow", "description": "Octo Organization CI workflow template.", "iconName": "example-icon", "categories": [ "Go" ], "filePatterns": [ "package.json$", "^Dockerfile", ".*\\.md$" ] }
name
- 必要。工作流程模板的名称。 这会显示在可用模板列表中。description
- 必要。工作流程模板的描述。 这会显示在可用模板列表中。iconName
- 必要。定义模板列表中工作流程项目的图标。iconName
必须是同名的 SVG 图标,且必须存储在workflow-templates
目录中。 例如,名为example-icon.svg
的 SVG 文件被引用为example-icon
。categories
- 可选。定义工作流程的语言类别。 当用户查看可用模板时,匹配相同语言的模板将更加突出。 有关可用语言类别的信息,请参阅https://github.com/github/linguist/blob/master/lib/linguist/languages.yml。filePatterns
- 可选。如果用户仓库在其根目录中有符合定义的正则表达式的文件,则允许使用模板。
要添加另一个工作流模板,请将您的文件添加到同一 workflow-templates
目录中。 例如:
后续步骤
To continue learning about GitHub Actions, see "Using workflow templates."