Skip to content

Commit 6ee2b15

Browse files
authored
Merge pull request #41006 from github/repo-sync
Repo sync
2 parents 830447f + 1b0b107 commit 6ee2b15

File tree

2 files changed

+7
-2
lines changed

2 files changed

+7
-2
lines changed

content/actions/tutorials/use-actions-runner-controller/quickstart.md

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -57,6 +57,11 @@ In order to use ARC, ensure you have the following.
5757
* Update the `INSTALLATION_NAME` value carefully. You will use the installation name as the value of `runs-on` in your workflows. For more information, see [AUTOTITLE](/actions/using-workflows/workflow-syntax-for-github-actions#jobsjob_idruns-on).
5858
* Update the `NAMESPACE` value to the location you want the runner pods to be created.
5959
* Set `GITHUB_CONFIG_URL` to the URL of your repository, organization, or enterprise. This is the entity that the runners will belong to.
60+
{% ifversion fpt %}
61+
* Set `GITHUB_PAT` to a {% data variables.product.company_short %} {% data variables.product.pat_generic %} with the `repo` and `admin:org` scopes for repository and organization runners.
62+
{% else %}
63+
* Set `GITHUB_PAT` to a {% data variables.product.company_short %} {% data variables.product.pat_generic %} with the `repo` and `manage_runners:org` scopes for repository and organization runners, and the `manage_runners:enterprise` scope for enterprise runners.
64+
{% endif %}
6065
* This example command installs the latest version of the Helm chart. To install a specific version, you can pass the `--version` argument with the version of the chart you wish to install. You can find the list of releases in the [GitHub Container Registry](https://github.com/actions/actions-runner-controller/pkgs/container/actions-runner-controller-charts%2Fgha-runner-scale-set).
6166

6267
> [!NOTE]
@@ -134,7 +139,7 @@ Now you will create and run a simple test workflow that uses the runner scale se
134139
1. To view the runner pods being created while the workflow is running, run the following command from your terminal.
135140
136141
```bash copy
137-
kubectl get pods -n arc-runners
142+
kubectl get pods -n arc-runners -w
138143
```
139144
140145
A successful output will look similar to the following.

content/copilot/concepts/agents/about-copilot-cli.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@ For installation instructions, see [AUTOTITLE](/copilot/how-tos/set-up/install-c
3939
* **Programmatic mode**: You can also pass the CLI a single prompt directly on the command line. You do this by using the `-p` or `--prompt` command-line option. To allow {% data variables.product.prodname_copilot_short %} to modify and execute files you should also use one of the approval options (see [Allowing tools to be used without manual approval](#allowing-tools-to-be-used-without-manual-approval) later in this article). For example:
4040

4141
```bash copy
42-
copilot -p "List my open PRs" --allow-all-tools
42+
copilot -p "Show me this week's commits and summarize them" --allow-tool 'shell(git)'
4343
```
4444

4545
Alternatively, you can use a script to output command-line options and pipe this to `copilot`. For example:

0 commit comments

Comments
 (0)