tmp #13
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: Install Copilot CLI | |
| run: | | |
| curl -fsSL https://gh.io/copilot-install | bash | |
| - name: Run Copilot CLI | |
| shell: bash | |
| env: | |
| COPILOT_GITHUB_TOKEN: ${{ secrets.PERSONAL_COPILOT_GITHUB_TOKEN }} | |
| run: | | |
| TODAY=$(date +%Y-%m-%d) | |
| # copilot --model gpt-5.2 | |
| #copilot help | |
| copilot --autopilot --yolo --max-autopilot-continues 10 --model gpt-5.2 -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." |