* chore: Add agent and copilot setup files Add AGENTS.md with project-specific developer notes for AI agents. Add GitHub Actions workflow to validate Copilot setup steps. Add changelog-entry skill for automated changelog generation. Assisted-by: OpenCode:kimi * Update .gitignore to include CLAUDE.md Add CLAUDE.md to .gitignore for symlink instructions
41 lines
921 B
YAML
41 lines
921 B
YAML
name: "Copilot Setup Steps"
|
|
|
|
permissions: {}
|
|
|
|
on:
|
|
workflow_dispatch:
|
|
push:
|
|
paths:
|
|
- .github/workflows/copilot-setup-steps.yml
|
|
pull_request:
|
|
paths:
|
|
- .github/workflows/copilot-setup-steps.yml
|
|
|
|
jobs:
|
|
copilot-setup-steps:
|
|
name: Copilot Setup Steps
|
|
runs-on: ubuntu-latest
|
|
permissions:
|
|
contents: read
|
|
|
|
steps:
|
|
- uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2
|
|
with:
|
|
persist-credentials: false
|
|
|
|
- uses: actions/setup-python@a309ff8b426b58ec0e2a45f0f869d46889d02405 # v6.2.0
|
|
with:
|
|
python-version: "3.x"
|
|
allow-prereleases: true
|
|
|
|
- uses: astral-sh/setup-uv@08807647e7069bb48b6ef5acd8ec9567f424441b # v8.1.0
|
|
|
|
- name: Install tooling
|
|
run: |
|
|
uv tool install nox
|
|
uv tool install prek
|
|
|
|
- name: Pre-install checks
|
|
run: |
|
|
prek prepare-hooks
|