Updating to v31.11.0
Prerequisites
This release requires sfp-pro 50.1.0 or later:
Update to sfp-pro release: release-20251218
Rebuild your sfops Docker images after updating sfp-pro
Updating v1 Project Workflows
Step 1: Create a Backup Tag
Before making any changes, create a tag so you can easily rollback if needed:
git tag pre-v31.11.0-backup
git push origin pre-v31.11.0-backupStep 2: Pull the Release
git fetch upstream --tags
git checkout -b sfops-v31.11.0-update
git merge v31.11.0
git push origin sfops-v31.11.0-updateCreate and merge the PR via GitHub UI.
Step 3: Copy Workflows to Your Project
Workflows have moved to project-workflows/v1/. Copy them to your project:
The file sfops-cron-ci-sandbox-create-v2.yml has been renamed to sfops-cron-ci-sandbox-create.yml. Delete the old file from your .github/workflows/ if it exists.
Step 4: Update sfops-close-issue.yml (Action Required)
Open .github/workflows/sfops-close-issue.yml and add secrets for each environment you want cleaned up when issues are closed.
Add the relevant secrets to the secrets: section:
Only include environments you actually use. These secrets must exist in your repository settings.
Step 5: Configure AI Provider (Optional)
If you want AI-powered PR analysis, add one or both secrets to your repository:
COPILOT_TOKEN
GitHub Copilot
ANTHROPIC_API_KEY
Anthropic Claude
For GitHub Copilot setup, see: Configuring LLM Providers - GitHub Copilot
Then ensure the secret is passed in .github/workflows/sfops-open-pr.yml:
Step 6: Verify Release Workflows Have NPM_TOKEN
Check that .github/workflows/sfops-open-release-issue.yml and .github/workflows/sfops-open-release-release-any-envs.yml include:
Updating v2 Project Workflows
Step 1: Create a Backup Tag
Same as v1 - see Step 1 above.
Step 2: Pull the Release
Same as v1 - see Step 2 above.
Step 3: Copy Workflows to Your Project
Step 4: Configure AI Provider (Optional)
If you want AI-powered PR analysis, add secrets and update .github/workflows/sfops-open-pr.yml as described in v1 Step 5 above.
Validation Checklist
v1 Users
v2 Users
Rollback
If you encounter issues, revert to your backup tag:
Create and merge the PR to restore your previous state.
Last updated