Workflow templates can be created by users with write access to the organization's .github repository. The templates can then be used by organization members who have permission to create workflows.
Workflow templates can be used to create new workflows in an organizations' public repositories; to use templates to create workflows in private repositories, the organization must be part of an enterprise or GitHub One plan.
Creating a workflow template
This procedure demonstrates how to create a workflow template and metadata file. The metadata file describes how the template is presented to users when they are creating a new workflow.
-
If it doesn't already exist, create a new public repository named
.githubin your organization. -
Create a directory named
workflow-templates. -
Create your new workflow file inside the
workflow-templatesdirectory. For example, this file namedocto-organization-ci.ymldemonstrates a basic workflow:name: Octo Organization CI on: push: branches: [ test-branch ] pull_request: branches: [ test-branch ] jobs: build: runs-on: ubuntu-latest steps: - uses: actions/checkout@v2 - name: Run a one-line script run: echo Hello from Octo Organization -
Create a metadata file inside the
workflow-templatesdirectory. The metadata file must have the same name as the workflow file, but instead of the.ymlextension, it must be appended with.properties.json. For example, this file namedocto-organization-ci.properties.jsoncontains the metadata for a workflow file namedocto-organization-ci.yml:{ "name": "Octo Organization Workflow", "description": "Octo Organization CI workflow template.", "iconName": "example-icon", "categories": [ "Go" ], "filePatterns": [ "package.json$", "^Dockerfile*" ] }name- Required. The name of the workflow template. This is displayed in the list of available templates.description- Required. The description of the workflow template. This is displayed in the list of available templates.iconName- Required. Defines an icon for the workflow's entry in the template list. TheiconNamemust be an SVG icon of the same name, and must be stored in theworkflow-templatesdirectory. For example, a SVG file namedexample-icon.svgis referenced asexample-icon.categories- Optional. Defines the language category of the workflow. When a user views the available templates, those templates that match the same language will feature more prominently. For information on the available language categories, see https://github.com/github/linguist/blob/master/lib/linguist/languages.yml.filePatterns- Optional. Allows the template to be used if the user's repository has a file in its root directory that matches a defined regular expression.
To add another workflow template, add your files to the same workflow-templates directory. For example:

Using a workflow template
This procedure demonstrates how a member of your organization can find and use a workflow template to create a new workflow. An organization's workflow templates can be used by anyone who is a member of the organization.
- On GitHub, navigate to the main page of the repository.
- Under your repository name, click Actions.

- If your repository already has existing workflows: In the upper-left corner, click New workflow.

- Your organization's workflow templates are located in their own section titled "Workflows created by organization name". Under the name of the template you'd like to use, click Set up this workflow.


