Skip to content

Commit a21ae7d

Browse files
heiskrCopilot
andauthored
🦾 Improve descriptiveness of "GitHub CLI" link text (a11y #16395) (#61285)
Co-authored-by: Copilot <223556219+Copilot@users.noreply.github.com>
1 parent cb23e74 commit a21ae7d

1 file changed

Lines changed: 4 additions & 4 deletions

File tree

‎content/issues/planning-and-tracking-with-projects/automating-your-project/automating-projects-using-actions.md‎

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -81,7 +81,7 @@ jobs:
8181
GH_TOKEN: {% raw %}${{ steps.generate-token.outputs.token }}{% endraw %}
8282
ORGANIZATION: YOUR_ORGANIZATION
8383
PROJECT_NUMBER: YOUR_PROJECT_NUMBER
84-
# Uses [{% data variables.product.prodname_cli %}](https://cli.github.com/manual/) to query the API for the ID of the project and return the name and ID of the first 20 fields in the project. `fields` returns a union and the query uses inline fragments (`... on`) to return information about any `ProjectV2Field` and `ProjectV2SingleSelectField` fields. The response is stored in a file called `project_data.json`.
84+
# Uses [{% data variables.product.prodname_cli %} manual](https://cli.github.com/manual/) to query the API for the ID of the project and return the name and ID of the first 20 fields in the project. `fields` returns a union and the query uses inline fragments (`... on`) to return information about any `ProjectV2Field` and `ProjectV2SingleSelectField` fields. The response is stored in a file called `project_data.json`.
8585
run: |
8686
gh api graphql -f query='
8787
query($org: String!, $number: Int!) {
@@ -125,7 +125,7 @@ jobs:
125125
env:
126126
GH_TOKEN: {% raw %}${{ steps.generate-token.outputs.token }}{% endraw %}
127127
PR_ID: {% raw %}${{ github.event.pull_request.node_id }}{% endraw %}
128-
# Uses [{% data variables.product.prodname_cli %}](https://cli.github.com/manual/) and the API to add the pull request that triggered this workflow to the project. The `jq` flag parses the response to get the ID of the created item.
128+
# Uses [{% data variables.product.prodname_cli %} manual](https://cli.github.com/manual/) and the API to add the pull request that triggered this workflow to the project. The `jq` flag parses the response to get the ID of the created item.
129129
run: |
130130
item_id="$( gh api graphql -f query='
131131
mutation($project:ID!, $pr:ID!) {
@@ -214,7 +214,7 @@ jobs:
214214
GH_TOKEN: {% raw %}${{ secrets.YOUR_TOKEN }}{% endraw %}
215215
ORGANIZATION: YOUR_ORGANIZATION
216216
PROJECT_NUMBER: YOUR_PROJECT_NUMBER
217-
# Uses [{% data variables.product.prodname_cli %}](https://cli.github.com/manual/) to query the API for the ID of the project and return the name and ID of the first 20 fields in the project. `fields` returns a union and the query uses inline fragments (`... on`) to return information about any `ProjectV2Field` and `ProjectV2SingleSelectField` fields. The response is stored in a file called `project_data.json`.
217+
# Uses [{% data variables.product.prodname_cli %} manual](https://cli.github.com/manual/) to query the API for the ID of the project and return the name and ID of the first 20 fields in the project. `fields` returns a union and the query uses inline fragments (`... on`) to return information about any `ProjectV2Field` and `ProjectV2SingleSelectField` fields. The response is stored in a file called `project_data.json`.
218218
run: |
219219
gh api graphql -f query='
220220
query($org: String!, $number: Int!) {
@@ -258,7 +258,7 @@ jobs:
258258
env:
259259
GH_TOKEN: {% raw %}${{ secrets.YOUR_TOKEN }}{% endraw %}
260260
PR_ID: {% raw %}${{ github.event.pull_request.node_id }}{% endraw %}
261-
# Uses [{% data variables.product.prodname_cli %}](https://cli.github.com/manual/) and the API to add the pull request that triggered this workflow to the project. The `jq` flag parses the response to get the ID of the created item.
261+
# Uses [{% data variables.product.prodname_cli %} manual](https://cli.github.com/manual/) and the API to add the pull request that triggered this workflow to the project. The `jq` flag parses the response to get the ID of the created item.
262262
run: |
263263
item_id="$( gh api graphql -f query='
264264
mutation($project:ID!, $pr:ID!) {

0 commit comments

Comments
 (0)