We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 679e303 commit 13eb9a7Copy full SHA for 13eb9a7
.github/workflows/mirror-dot-agents.yml
@@ -20,10 +20,11 @@ jobs:
20
env:
21
TOKEN: ${{ secrets.CODEBUFF_GITHUB_TOKEN }}
22
run: |
23
+ if [[ -v TOKEN ]]; then
24
+ echo "token exists"
25
+ else
26
+ echo "token does not exist"
27
+ fi
28
git subtree push --prefix=common/src/templates/initial-agents-dir \
- https://x-access-token:${TOKEN}@github.com/codebuffai/codebuff-dot-agents.git \
29
+ https://${TOKEN}@github.com/codebuffai/codebuff-dot-agents.git \
30
main
- - name: Open interactive debug shell
- if: ${{ failure() }}
- uses: mxschmitt/action-tmate@v3
- timeout-minutes: 15 # optional guard
0 commit comments