|
81 | 81 | GH_TOKEN: {% raw %}${{ steps.generate-token.outputs.token }}{% endraw %} |
82 | 82 | ORGANIZATION: YOUR_ORGANIZATION |
83 | 83 | 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`. |
85 | 85 | run: | |
86 | 86 | gh api graphql -f query=' |
87 | 87 | query($org: String!, $number: Int!) { |
@@ -125,7 +125,7 @@ jobs: |
125 | 125 | env: |
126 | 126 | GH_TOKEN: {% raw %}${{ steps.generate-token.outputs.token }}{% endraw %} |
127 | 127 | 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. |
129 | 129 | run: | |
130 | 130 | item_id="$( gh api graphql -f query=' |
131 | 131 | mutation($project:ID!, $pr:ID!) { |
@@ -214,7 +214,7 @@ jobs: |
214 | 214 | GH_TOKEN: {% raw %}${{ secrets.YOUR_TOKEN }}{% endraw %} |
215 | 215 | ORGANIZATION: YOUR_ORGANIZATION |
216 | 216 | 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`. |
218 | 218 | run: | |
219 | 219 | gh api graphql -f query=' |
220 | 220 | query($org: String!, $number: Int!) { |
@@ -258,7 +258,7 @@ jobs: |
258 | 258 | env: |
259 | 259 | GH_TOKEN: {% raw %}${{ secrets.YOUR_TOKEN }}{% endraw %} |
260 | 260 | 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. |
262 | 262 | run: | |
263 | 263 | item_id="$( gh api graphql -f query=' |
264 | 264 | mutation($project:ID!, $pr:ID!) { |
|
0 commit comments