Skip to content

Commit 962cf81

Browse files
authored
Remove NET 7 from pipelines (#3631)
Fixing Version number updates
1 parent 28c6a8d commit 962cf81

File tree

4 files changed

+8
-12
lines changed

4 files changed

+8
-12
lines changed

.github/workflows/build_artifacts.yml

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,6 @@ jobs:
3333
with:
3434
dotnet-version: |
3535
6.x
36-
7.x
3736
8.x
3837
3938
- name: Restore dependencies

.github/workflows/icon_update.yml

Lines changed: 1 addition & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -21,12 +21,7 @@ jobs:
2121

2222
steps:
2323
- uses: actions/checkout@v4
24-
25-
- name: Setup .NET
26-
uses: actions/setup-dotnet@v4
27-
with:
28-
dotnet-version: 7.x
29-
24+
3025
- name: Run Icon Generation
3126
run: dotnet run -c Release -- icons
3227
working-directory: ./src/MaterialDesignToolkit.ResourceGeneration

.github/workflows/pr_verification.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,4 +29,4 @@ jobs:
2929
contents: write
3030

3131
steps:
32-
- uses: fastify/[email protected]
32+
- uses: fastify/[email protected]

.github/workflows/release.yml

Lines changed: 6 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -311,10 +311,12 @@ jobs:
311311
Update-Version -Prefix "mdix-colors-version"
312312
Update-Version -Prefix "mdix-mahapps-version"
313313
314-
- name: Push Changes
314+
- name: Open Pull Request
315315
run: |
316316
git config --local user.email "github-actions[bot]@users.noreply.github.com"
317317
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

0 commit comments

Comments
 (0)