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: Daily summary | |
| on: | |
| push: | |
| permissions: | |
| contents: read | |
| jobs: | |
| daily-summary: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Checkout | |
| uses: actions/checkout@v5 | |
| - name: Set up Node.js environment | |
| uses: actions/setup-node@v4 | |
| - name: Install Copilot CLI | |
| run: npm install -g @github/copilot | |
| - name: Run Copilot CLI | |
| env: | |
| COPILOT_GITHUB_TOKEN: ${{ secrets.PERSONAL_COPILOT_GITHUB_TOKEN }} | |
| run: | | |
| TODAY=$(date +%Y-%m-%d) | |
| /model claude-sonnet-4.6 | |
| copilot -p "Review the git log for this repository and write a bullet point summary of all code changes that were made today ($TODAY). Include a brief description of what was changed." --allow-all-tools |