File tree Expand file tree Collapse file tree 2 files changed +5
-0
lines changed
Expand file tree Collapse file tree 2 files changed +5
-0
lines changed Original file line number Diff line number Diff line change @@ -97,6 +97,7 @@ Trigger the workflow manually or automatically based on your configuration. The
9797| `repository` | Yes | Repository (with owner) for issues and PRs | `primer/primer-docs` |
9898| `token` | Yes | PAT with write permissions (see above) | `${{ secrets.GH_TOKEN }}` |
9999| `cache_key` | No | Custom key for caching findings across runs<br>Allowed : ` A-Za-z0-9._/-` | `cached_findings-main-primer.style.json` |
100+ | `session_state_path` | No | Path to a file containing authenticated session state | `/tmp/.auth/12345678/sessionState.json` |
100101| `skip_copilot_assignment` | No | Whether to skip assigning filed issues to Copilot | `true` |
101102
102103---
Original file line number Diff line number Diff line change @@ -15,6 +15,9 @@ inputs:
1515 cache_key :
1616 description : " Custom key for caching findings across runs"
1717 required : false
18+ session_state_path :
19+ description : " Path to a file containing authenticated session state"
20+ required : false
1821 skip_copilot_assignment :
1922 description : " Whether to skip assigning filed issues to Copilot"
2023 required : false
4447 uses : ./.github/actions/find
4548 with :
4649 urls : ${{ inputs.urls }}
50+ session_state_path : ${{ inputs.session_state_path }}
4751 - name : File
4852 id : file
4953 uses : ./.github/actions/file
You can’t perform that action at this time.
0 commit comments