As discussed during yesterday's frontend meeting, PRs from forks result in Chromatic checks failing. #1039 is an example:
Our plan is to skip these checks for forks.
We do this in a couple ways on the backend:
# Avoid being triggered by forks
if: "! github.event.pull_request.head.repo.fork && github.actor != 'dependabot[bot]'"
From https://github.com/IQSS/dataverse/blob/v6.11/.github/workflows/copy_labels.yml#L10
Also this way:
I might try to vibe code something.
As discussed during yesterday's frontend meeting, PRs from forks result in Chromatic checks failing. #1039 is an example:
Our plan is to skip these checks for forks.
We do this in a couple ways on the backend:
From https://github.com/IQSS/dataverse/blob/v6.11/.github/workflows/copy_labels.yml#L10
Also this way:
I might try to vibe code something.