-
Notifications
You must be signed in to change notification settings - Fork 15
XS⚠️ ◾ [Autogenerated] Release v1.7.11 #681
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Conversation
Add --global flag to pull.rebase config in git-setup-and-push action and add merge strategy step to build workflow to ensure consistent git configuration across all workflow contexts.
PR Metrics✔ Thanks for keeping your pull request small.
Metrics computed by PR Metrics. Add it to your Azure DevOps and GitHub PRs! |
| @@ -1,21 +1,21 @@ | |||
| { | |||
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
❗ This file doesn't require review.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Pull request overview
This PR bumps PR Metrics from version 1.7.10 to 1.7.11 as part of an autogenerated release process. It includes dependency updates and workflow improvements to the Git merge strategy.
Changes:
- Version bump from 1.7.10 to 1.7.11 across all configuration files and source code
- Dependency updates including @actions/core, azure-pipelines-task-lib, TypeScript ESLint packages, and various dev dependencies
- Git workflow improvements to use rebase strategy instead of merge commits
Reviewed changes
Copilot reviewed 13 out of 16 changed files in this pull request and generated 1 comment.
Show a summary per file
| File | Description |
|---|---|
| src/vss-extension.json | Updates extension version to 1.7.11 |
| src/task/tests/repos/gitHubReposInvoker.spec.ts | Updates expected user agent string in test to match new version |
| src/task/task.loc.json | Updates patch version to 11 |
| src/task/task.json | Updates friendly name and patch version to 1.7.11 |
| src/task/src/repos/gitHubReposInvoker.ts | Updates user agent string to v1.7.11 |
| src/task/Strings/resources.resjson/en-US/resources.resjson | Updates localized friendly name to v1.7.11 |
| package.json | Bumps version and updates multiple dependencies |
| package-lock.json | Updates lockfile to reflect new dependency versions |
| README.md | Updates documentation examples to reference v1.7.11 |
| .github/workflows/support/release-phase-2-trigger.txt | Updates version trigger to 1.7.11 |
| .github/workflows/release-phase-1.yml | Increments patch version to 12 for next release |
| .github/workflows/build.yml | Adds rebase merge strategy and pull step |
| .github/actions/release-phase-1-internal/action.yml | Changes git pull to use rebase with autostash |
| .github/actions/git-setup-and-push/action.yml | Changes merge strategy from false to true for rebase |
💡 Add Copilot custom instructions for smarter, more guided reviews. Learn how to get started.
| - if: ${{ github.actor != 'dependabot[bot]' && steps.detect-changes.outputs.NO_CHANGES_PRESENT == 'False' }} | ||
| name: Git – Set Merge Strategy | ||
| run: git config --global pull.rebase true | ||
|
|
||
| - if: ${{ github.actor != 'dependabot[bot]' && steps.detect-changes.outputs.NO_CHANGES_PRESENT == 'False' }} | ||
| name: Git – Commit Changed Files | ||
| run: git commit -m "Fixing linting, Updating dist folder" | ||
|
|
||
| - if: ${{ github.actor != 'dependabot[bot]' && steps.detect-changes.outputs.NO_CHANGES_PRESENT == 'False' }} | ||
| name: Git – Pull Changed Files | ||
| run: git pull --rebase --autostash |
Copilot
AI
Jan 16, 2026
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
The merge strategy is configured at step 81, but the pull at step 89 already specifies --rebase explicitly. The git config step could potentially be removed or consolidated since the pull command already declares its rebase behavior. This creates redundancy where the same configuration is set in two places.
Autogenerated release for PR Metrics v1.7.11. This includes the latest dependency updates.