Skip to content

tmp

tmp #13

Workflow file for this run

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."