Files
Kilo-Org_kilocode/.github/actions/setup-git-committer/action.yml
2026-05-06 08:38:59 +00:00

57 lines
1.8 KiB
YAML

name: "Setup Git Committer"
description: "Create app token and configure git user"
inputs:
# kilocode_change start
kilo-maintainer-app-id:
description: "Kilo Maintainer GitHub App ID"
required: true
kilo-maintainer-app-secret:
description: "Kilo Maintainer GitHub App private key"
required: true
# kilocode_change end
outputs:
token:
description: "GitHub App token"
value: ${{ steps.apptoken.outputs.token }}
app-slug:
description: "GitHub App slug"
value: ${{ steps.apptoken.outputs.app-slug }}
runs:
using: "composite"
steps:
- name: Create app token
id: apptoken
uses: actions/create-github-app-token@v2
with:
# kilocode_change start
app-id: ${{ inputs['kilo-maintainer-app-id'] }}
private-key: ${{ inputs['kilo-maintainer-app-secret'] }}
# kilocode_change end
owner: ${{ github.repository_owner }}
- name: Configure git user
run: |
slug="${{ steps.apptoken.outputs.app-slug }}"
git config --global user.name "${slug}[bot]"
git config --global user.email "${slug}[bot]@users.noreply.github.com"
shell: bash
- name: Clear checkout auth
run: |
git config --local --unset-all http.https://github.com/.extraheader || true
# kilocode_change start
keys="$(git config --local --name-only --get-regexp '^includeIf\.gitdir:' || true)"
for key in $keys; do
path="$(git config --local --get "$key" || true)"
case "$path" in
*git-credentials-*.config) git config --local --unset-all "$key" || true ;;
esac
done
# kilocode_change end
shell: bash
- name: Configure git remote
run: |
git remote set-url origin https://x-access-token:${{ steps.apptoken.outputs.token }}@github.com/${{ github.repository }}
shell: bash