You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
# The way the action should handle pathspec errors from the add and remove commands. Three options are available:
76
89
# - ignore -> errors will be logged but the step won't fail
@@ -81,4 +94,9 @@ jobs:
81
94
82
95
# Whether to push the commit and, if any, its tags to the repo. It can also be used to set the git push arguments (see the paragraph below for more info)
83
96
# Default: true
84
-
push: true
97
+
push: true
98
+
99
+
- name: Create Pull Request
100
+
shell: pwsh
101
+
run: |
102
+
gh pr create --title "NuGet: Bumped Files UI controls version to `${{ steps.get_version.outputs.full_version }}`" --body "This PR bumps the Files UI controls micro version to `${{ steps.bump_version.outputs.new_version }}`, with publish version ${{ steps.get_version.outputs.full_version }}" --base main --head files/ui-controls/${{ steps.get_version.outputs.full_version }}
0 commit comments