diff --git a/.cursor/rules/reusable-workflows.mdc b/.cursor/rules/reusable-workflows.mdc index e68023b..ab460b8 100644 --- a/.cursor/rules/reusable-workflows.mdc +++ b/.cursor/rules/reusable-workflows.mdc @@ -146,15 +146,6 @@ on: secrets: DEPLOY_TOKEN: required: true - workflow_dispatch: - inputs: - environment: - required: true - type: string - dry_run: - description: Preview changes without applying them - type: boolean - default: false ``` The two modes have opposite goals — design them accordingly: diff --git a/.github/workflows/gitops-update.yml b/.github/workflows/gitops-update.yml index 3ea186c..5f3acb0 100644 --- a/.github/workflows/gitops-update.yml +++ b/.github/workflows/gitops-update.yml @@ -458,7 +458,7 @@ jobs: exit 1 fi - BACKOFF=$((i * 2)) + BACKOFF=$((2 ** i)) echo "Push failed (attempt $i/$MAX_RETRIES), rebasing and retrying in ${BACKOFF}s..." sleep "$BACKOFF" git pull --rebase origin main diff --git a/docs/build-workflow.md b/docs/build-workflow.md index 3991ce6..379cb5b 100644 --- a/docs/build-workflow.md +++ b/docs/build-workflow.md @@ -139,7 +139,6 @@ Generated tags based on semantic versioning: | Tag Pattern | Example | When Applied | |-------------|---------|--------------| | `{{version}}` | `1.0.0-beta.1` | Always | -| `{{major}}.{{minor}}` | `1.0` | Always | | `{{major}}` | `1` | Release tags only | ## Monorepo Change Detection