79517165

Date: 2025-03-18 11:04:58
Score: 1
Natty:
Report link

I found the issue. I was using the wrong event. The correct one is: github.event.workflow_run.name

 - name: Download Staging Artifact
    if: github.event.workflow_run.name == Smoke Test Staging
    run: |
      gh run download ${{ github.event.workflow_run.id }} \
      -p "playwright-staging-report-*" \
      -D playwright-staging-reports
    env:
      GH_TOKEN: ${{ secrets.GITHUB_TOKEN }}

Thanks everyone

Reasons:
  • Blacklisted phrase (0.5): Thanks
  • Has code block (-0.5):
  • Self-answer (0.5):
  • Low reputation (0.5):
Posted by: Libin Thomas