We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 58fff87 commit 6d85340Copy full SHA for 6d85340
.github/workflows/snapshot.yml
@@ -9,6 +9,11 @@ on:
9
type: boolean
10
description: Set `true` to skip diff commits.
11
default: true
12
+ target_branch:
13
+ type: string
14
+ description: Target branch to use.
15
+ required: true
16
+
17
jobs:
18
snapshot:
19
runs-on: ${{ matrix.os }}
@@ -24,13 +29,13 @@ jobs:
24
29
with:
25
30
ref: ${{ github.event.inputs.target_branch }}
26
31
lfs: true
27
-
32
28
33
# Build projects
34
- uses: ./.github/actions/build
35
- run: dotnet build -c Release samples/extensions/build
36
37
# Update snapshots
- - run: dotnet test -c Release -f net8.0 --no-build --filter Stage=Snapshot
38
+ - run: dotnet test -c Release -f net8.0 --no-build
39
working-directory: test/docfx.Snapshot.Tests
40
env:
41
BUILD_SERVER: false # Accept changes automatically
0 commit comments