We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent c29c057 commit 386ebcfCopy full SHA for 386ebcf
1 file changed
.github/workflows/jira_codex_pr.yml
@@ -243,10 +243,16 @@ jobs:
243
git checkout -B "$BRANCH" "origin/$BASE_BRANCH"
244
fi
245
246
+ - name: Prepare Codex home
247
+ run: |
248
+ set -euo pipefail
249
+ mkdir -p "${RUNNER_TEMP}/codex-home"
250
+
251
- name: Run Codex to implement ticket
252
uses: openai/codex-action@94bb7a052e529936e5260a35838e61b190855739 # v1
253
with:
- openai_api_key: ${{ secrets.OPENAI_API_KEY }}
254
+ openai-api-key: ${{ secrets.OPENAI_API_KEY }}
255
+ codex-home: ${{ runner.temp }}/codex-home
256
prompt: |
257
You are implementing Jira ticket ${{ steps.jira.outputs.JIRA_KEY }} in this repository.
258
0 commit comments