Open
Conversation
Signed-off-by: Abhijat Malviya <abhijat@dragonflydb.io>
Contributor
There was a problem hiding this comment.
Pull request overview
This PR adds repository guards to several GitHub Actions workflows so the jobs only execute in the upstream dragonflydb/dragonfly repository (and are skipped in forks).
Changes:
- Added
if: github.repository == 'dragonflydb/dragonfly'at the job level across multiple scheduled/manual workflows. - Updated existing job conditions in
package-install.ymlto include the repository guard while preserving priorworkflow_run/always()logic.
Reviewed changes
Copilot reviewed 11 out of 11 changed files in this pull request and generated no comments.
Show a summary per file
| File | Description |
|---|---|
| .github/workflows/regression-tests.yml | Guard build and lint-test-chart jobs to only run on dragonflydb/dragonfly. |
| .github/workflows/package-install.yml | Add upstream-repo guard to all jobs while keeping existing workflow_run/failure notification conditions. |
| .github/workflows/mastodon-ruby-tests.yml | Guard the build-and-test job to upstream repo only. |
| .github/workflows/heavy-tests.yml | Guard the build job to upstream repo only. |
| .github/workflows/fuzz-long.yml | Guard the fuzz-long job to upstream repo only. |
| .github/workflows/epoll-regression-tests.yml | Guard build and lint-test-chart jobs to upstream repo only. |
| .github/workflows/docker-dev-release.yml | Guard build_and_tag and merge_manifest jobs to upstream repo only. |
| .github/workflows/daily-builds.yml | Guard build and build-macos jobs to upstream repo only. |
| .github/workflows/cov.yml | Guard the build job to upstream repo only. |
| .github/workflows/bullmq-tests.yml | Guard the build job to upstream repo only. |
| .github/workflows/benchmark.yml | Guard the benchmark job to upstream repo only. |
🤖 Augment PR SummarySummary: This PR restricts several CI workflows to run only in the upstream Changes:
🤖 Was this summary useful? React with 👍 or 👎 |
romange
approved these changes
Mar 4, 2026
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
make sure jobs only run on the org repo (dragonflydb/dragonfly)