Added workflows and reusable prompts #1
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| name: Generate Documentation with Copilot | |
| on: | |
| push: | |
| paths-ignore: | |
| - 'docs/**' | |
| - '**.md' | |
| jobs: | |
| generate-docs: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Checkout code | |
| uses: actions/checkout@v4 | |
| with: | |
| fetch-depth: 0 | |
| - name: Install GitHub Copilot CLI | |
| env: | |
| GH_TOKEN: ${{ secrets.COPILOT_CLI_TOKEN }} | |
| run: | | |
| curl -fsSL https://gh.io/copilot-install | bash | |
| echo "Installed Copilot CLI version:" | |
| copilot --version | |
| - name: Analyze and delegate to Copilot | |
| env: | |
| GH_TOKEN: ${{ secrets.COPILOT_CLI_TOKEN }} | |
| run: | | |
| echo "Analyzing commit ${{ github.sha }}" | |
| echo "Loading documentation criteria from prompt..." | |
| PROMPT=$(cat .github/prompts/analyze-for-docs.prompt.md) | |
| PROMPT="${PROMPT//\{COMMIT_SHA\}/${{ github.sha }}}" | |
| PROMPT="${PROMPT//\{REPOSITORY\}/${{ github.repository }}}" | |
| echo "Delegating to GitHub Copilot..." | |
| echo "- Copilot will use MCP to examine the commit" | |
| echo "- Copilot will decide if documentation is needed" | |
| echo "- Copilot will create an issue and assign it to itself if needed" | |
| echo "" | |
| copilot -p "$PROMPT" --enable-all-github-mcp-tools --allow-all-tools |