Skip to content

1.1.0

Latest

Choose a tag to compare

@github-actions github-actions released this 17 Jun 10:42
· 9 commits to master since this release
af7701b

Added

  • Get-PendingDeployment gains an optional -CreatedSince cutoff. Deployments
    created before the cutoff are skipped without a status API call. Defaults to
    MinValue (check every deployment), so existing callers are unaffected.

Fixed

  • The polling agent no longer exhausts the GitHub API rate limit. Because GitHub
    never deletes deployments, Get-PendingDeployment was fetching statuses for a
    full page of historical, terminal deployments on every tick - an N+1 fan-out
    (~31 calls/poll) that drained the hourly budget and crashed the agent with
    403 (rate limit exceeded). Callers now pass -CreatedSince to collapse a
    quiet poll to a single list call.