File tree Expand file tree Collapse file tree 4 files changed +8
-12
lines changed Expand file tree Collapse file tree 4 files changed +8
-12
lines changed Original file line number Diff line number Diff line change 33
33
with :
34
34
dotnet-version : |
35
35
6.x
36
- 7.x
37
36
8.x
38
37
39
38
- name : Restore dependencies
Original file line number Diff line number Diff line change 21
21
22
22
steps :
23
23
- uses : actions/checkout@v4
24
-
25
- - name : Setup .NET
26
- uses : actions/setup-dotnet@v4
27
- with :
28
- dotnet-version : 7.x
29
-
24
+
30
25
- name : Run Icon Generation
31
26
run : dotnet run -c Release -- icons
32
27
working-directory : ./src/MaterialDesignToolkit.ResourceGeneration
Original file line number Diff line number Diff line change 29
29
contents : write
30
30
31
31
steps :
32
-
32
+
Original file line number Diff line number Diff line change @@ -311,10 +311,12 @@ jobs:
311
311
Update-Version -Prefix "mdix-colors-version"
312
312
Update-Version -Prefix "mdix-mahapps-version"
313
313
314
- - name : Push Changes
314
+ - name : Open Pull Request
315
315
run : |
316
316
git config --local user.email "github-actions[bot]@users.noreply.github.com"
317
317
git config --local user.name "github-actions[bot]"
318
- git commit -m "[automated] Increment version numbers after release of ${{ inputs.milestone }}" --all
319
- git remote set-url origin https://${{ secrets.SA_PAT }}@github.com/${{ github.repository }}
320
- git push
318
+ git checkout -b "automated/version_update"
319
+ git commit -m "[bot] Release version update" --all
320
+ git push -f --set-upstream origin automated/version_update
321
+ gh pr create --fill
322
+ gh pr merge automated/version_update --delete-branch --auto --squash
You can’t perform that action at this time.
0 commit comments