We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 263a2f0 commit 6fde8c9Copy full SHA for 6fde8c9
README.md
@@ -14,10 +14,23 @@ This action outputs Github Action workflows and jobs details to OTLP via gRPC.
14
15
**Optional** Additional header configuration to pass in as metadata to the gRPC connection.
16
17
+## `repo-token`
18
+
19
+**Optional** Token to use to authorize access to private repositories. Typically the `GITHUB_TOKEN` secret, with `checks:read` access.
20
21
## Example usage
22
23
```
24
uses: codeboten/github-action-to-otlp@v1
25
with:
26
endpoint: 'grpc.otlpendpoint.io:443'
27
28
29
+## Example usage in a private repository
30
31
+```
32
+uses: codeboten/github-action-to-otlp@v1
33
+with:
34
+ endpoint: 'grpc.otlpendpoint.io:443'
35
+ repo-token: ${{ secrets.GITHUB_TOKEN }}
36
0 commit comments