Conversation
Copilot
AI
changed the title
[WIP] Implement workflow to recalculate start date
Implement Jul 12, 2026
recalculate-start-date workflow to re-anchor all Issue start dates from Project start date
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.
This PR replaces the
recalculate-start-date.ymlstub with a full GitHub Actions workflow for projectella-system/ project#4. The workflow readsProject start date, computes the offset vs. the earliestIssue start, and shifts allIssue startvalues accordingly.Workflow trigger and configuration
workflow_dispatch.GH_TOKEN: ${{ secrets.PROJECT_PAT }}ORG: ella-systemPROJECT_NUMBER: 4PROJECT_START_FIELD_NAME: Project start dateSTART_FIELD_NAME: Issue startData collection (paginated GraphQL)
first:100+ cursor pagination.fieldValueByNamefor both:Project start date(uses first non-null value as reference date)Issue startRe-anchor algorithm
Issue startacross all items.OFFSET_DAYS = project_start_date - min(issue_start).Project start dateis unsetIssue startOFFSET_DAYS == 0Item updates and operational behavior
Issue startonly when computed value differs from current value.Security hardening
permissions: {}at workflow level.