We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 03ef757 commit aa3ebd7Copy full SHA for aa3ebd7
1 file changed
.github/actions/push-changes/action.yml
@@ -12,10 +12,21 @@ inputs:
12
commit-message:
13
description: 'The commit message to use when pushing changes.'
14
required: true
15
+# Optional
16
+ dotnet_sdk_version:
17
+ description: '.NET SDK version. Default: 9.x'
18
+ required: false
19
+ default: '9.x'
20
21
runs:
22
using: "composite"
- steps:
23
+ steps:
24
+ - name: 'Checkout ${{ github.head_ref || github.ref }}'
25
+ uses: actions/checkout@v4
26
+ - name: Dotnet Setup
27
+ uses: actions/setup-dotnet@v4
28
+ with:
29
+ dotnet-version: ${{ env.dotnet-sdk-version }}
30
- name: Add changes from ${{ inputs.working-directory }}
31
shell: bash
32
run: |
0 commit comments