test: trim traffic CSVs for workflow testing#32
Merged
Conversation
Co-authored-by: Copilot <223556219+Copilot@users.noreply.github.com>
Contributor
There was a problem hiding this comment.
Pull request overview
This PR trims the repository’s traffic snapshot CSVs to intentionally create a date gap, allowing the traffic-updater workflow to exercise its backfill behavior when re-triggered.
Changes:
- Removed the most recent date rows from
.github/views.csv - Removed the most recent date rows from
.github/uvs.csv
Reviewed changes
Copilot reviewed 2 out of 2 changed files in this pull request and generated 1 comment.
| File | Description |
|---|---|
| .github/views.csv | Trims recent daily view entries to create a backfill gap for workflow testing. |
| .github/uvs.csv | Trims recent daily unique visitor entries to create a backfill gap for workflow testing. |
💡 Add Copilot custom instructions for smarter, more guided reviews. Learn how to get started.
Comment on lines
20
to
22
| "03/23",3847 | ||
| "03/24",3178 | ||
| "03/25",3212 |
There was a problem hiding this comment.
The PR description says it removes the last 4 days (03/27–03/30), but this file also drops 03/26 (5 days total: 03/26–03/30). Either update the PR description to match the actual trimmed range, or keep 03/26 in the CSV if the intent is only a 4‑day gap.
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.
Removes last 4 days (03/27–03/30) from both
.github/uvs.csvand.github/views.csvso the traffic-updater workflow has a gap to backfill when re-triggered.