Skip to content

Conversation

Copy link
Contributor

Copilot AI commented Jan 22, 2026

Campaign generator and 22 other workflows failed when adding reactions due to missing authentication in the pre_activation job.

Root cause: The reaction step used actions/github-script without explicitly passing github-token, causing authentication to fail despite the action's supposed default behavior.

Changes:

  • Added explicit github-token: ${{ secrets.GITHUB_TOKEN }} parameter to reaction step generation in compiler_activation_jobs.go
  • Regenerated 23 affected .lock.yml files

Before:

- name: Add eyes reaction for immediate feedback
  uses: actions/github-script@v8.0.0
  with:
    script: |
      ...

After:

- name: Add eyes reaction for immediate feedback
  uses: actions/github-script@v8.0.0
  with:
    github-token: ${{ secrets.GITHUB_TOKEN }}
    script: |
      ...

This matches the pattern already used in the membership check step.

Original prompt

Understand why campaign generator failed: https://github.com/githubnext/gh-aw/actions/runs/21251337345


💬 We'd love your input! Share your thoughts on Copilot coding agent in our 2 minute survey.

…oken parameter

Co-authored-by: mnkiefer <8320933+mnkiefer@users.noreply.github.com>
Copilot AI changed the title [WIP] Investigate campaign generator failure issue Fix authentication failure in reaction step Jan 22, 2026
Copilot AI requested a review from mnkiefer January 22, 2026 14:30
@mnkiefer mnkiefer marked this pull request as ready for review January 22, 2026 14:34
@mnkiefer mnkiefer merged commit 94fec45 into main Jan 22, 2026
49 checks passed
@mnkiefer mnkiefer deleted the copilot/debug-campaign-generator-failure-again branch January 22, 2026 14:37
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

None yet

Projects

None yet

Development

Successfully merging this pull request may close these issues.

2 participants