注: GitHub 托管的运行器目前在 GitHub Enterprise Server 上不受支持。 您可以在 GitHub 公共路线图 上查看有关未来支持计划的更多信息。
概览
入门工作流程允许组织中有权创建工作流的每个人更快、更轻松地创建工作流程。 创建新工作流程时,您可以选择入门工作流程,编写工作流程的部分或全部工作将为您完成。 您可以使用入门工作流程作为起点来构建自定义工作流程,或按原� �使用工作流程。 这不仅可以节省时间,还可以促进整个组织的一致性和最佳实践。
GitHub provides ready-to-use starter workflows for the following high level categories:
-
Deployment (CD). For more information, see "About continuous deployment."
-
Continuous Integration (CI). 更多信息请参阅“关于持续集成”。
-
Automation. Automation starter workflows offer solutions for automating workflows, such as triaging pull requests and applying a label based on the paths that are modified in the pull request, or greeting users who are first time contributors to the repository.
创建入门工作流程
入门工作流程可由对组织的 .github
存储库具有写入访问权限的用户创建。 然后,有权限创建工作流程的组织成员便可使用它们。
此过程演示如何创建入门工作流程和元数据文件。 元数据文件描述了在用户创建新工作流程时如何向用户显示入门工作流程。
-
如果组织中没有名为
.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 starter workflow.", "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
目录中。 例如:
后续步骤
要继续了解 GitHub Actions,请参阅“使用入门工作流程”。