ノート: GitHubホストランナーは、現在GitHub Enterprise Serverでサポートされていません。 GitHubパブリックロードマップで、計画されている将来のサポートに関する詳しい情� �を見ることができます。
About starter workflows
GitHub Enterprise Server offers starter workflows for a variety of languages and tooling. When you set up workflows in your repository, GitHub Enterprise Server analyzes the code in your repository and recommends workflows based on the language and framework in your repository. For example, if you use Node.js, GitHub Enterprise Server will suggest a starter workflow file that installs your Node.js packages and runs your tests.
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.
You can also create your own starter workflow to share with your organization. These starter workflows will appear alongside the GitHub Enterprise Server-provided starter workflows. For more information, see "Creating starter workflows for your organization."
Using starter workflows
Anyone with write permission to a repository can set up GitHub Actions starter workflows for CI/CD or other automation.
- your GitHub Enterprise Server instanceで、リポジトリのメインページにアクセスしてく� さい。
- Under your repository name, click Actions.
- If you already have a workflow in your repository, click New workflow.
- Find the starter workflow that you want to use, then click Set up this workflow.
- If the starter workflow contains comments detailing additional setup steps, follow these steps. Many of the starter workflow have corresponding guides. For more information, see the GitHub Actions guides."
- Some starter workflows use secrets. For example,
${{ secrets.npm_token }}
. If the starter workflow uses a secret, store the value described in the secret name as a secret in your repository. For more information, see "Encrypted secrets." - Optionally, make additional changes. For example, you might want to change the value of
on
to change when the workflow runs. - [Start commit] をクリックします。
- Write a commit message and decide whether to commit directly to the default branch or to open a pull request.