Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 5 additions & 1 deletion .github/workflows/ci_run.yml
Original file line number Diff line number Diff line change
Expand Up @@ -498,7 +498,11 @@ jobs:
if: always() && steps.should_file.outputs.file == 'true' && inputs.enable_reporting
uses: ipdxco/create-or-update-issue@v1
with:
GITHUB_TOKEN: ${{ github.token }}
# We're not using `github.token` here because it won't trigger other workflows like `add-issues-to-project`.
# Instead, we use a PAT to trigger other workflows.
Comment on lines +501 to +502
Copy link
Copy Markdown
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

This doesn't really make sense.

# This PAT has permissions to open/update issues, which is why it was used.
# Alternatively, we could create a more narrowly scoped PAT, but this would be another PAT to setup/manage.
GITHUB_TOKEN: ${{ secrets.FILOZZY_RELEASE_PLEASE_PAT_FILOZONE }}
Copy link
Copy Markdown
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Looks like the secret is not configured for this repo.

Copy link
Copy Markdown
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

title: ${{ inputs.issue_title }}
body: |
The **${{ inputs.name }}** scenarios run **${{ steps.should_file.outputs.passed == 'true' && 'passed ✅' || 'failed ❌' }}**.
Expand Down
Loading