We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 61c3637 commit c687362Copy full SHA for c687362
1 file changed
.github/actions/copilot/action.yml
@@ -50,14 +50,21 @@ runs:
50
- run: |
51
ls -al $XDG_CONFIG_HOME/.copilot
52
CONFIG='{
53
- "trusted_folders": ["/"]
+ "banner": "never",
54
+ "render_markdown": true,
55
+ "screen_reader": false,
56
+ "theme": "auto",
57
+ "trusted_folders": [
58
+ "/home/runner"
59
+ ]
60
}'
61
echo "$CONFIG" > $XDG_CONFIG_HOME/.copilot/config.json
62
cat $XDG_CONFIG_HOME/.copilot/config.json
63
shell: bash
64
- run: copilot -p "$PROMPT" --allow-all-tools --log-level all --log-dir ~/.copilot/logs --save-trajectory-output ~/.copilot/trajectory.md
65
id: copilot
66
env:
67
+ GITHUB_STEP_SUMMARY: ${{ github.step_summary }}
68
GH_TOKEN: ${{ inputs.github-token }}
69
PROMPT: ${{ inputs.prompt }}
70
0 commit comments