File tree Expand file tree Collapse file tree 1 file changed +35
-0
lines changed Expand file tree Collapse file tree 1 file changed +35
-0
lines changed Original file line number Diff line number Diff line change
1
+ name : Update Samples
2
+
3
+ on :
4
+ schedule :
5
+ - cron : ' 0 0 * * SUN'
6
+ workflow_dispatch :
7
+
8
+ jobs :
9
+ main :
10
+ name : Update Samples
11
+ runs-on : ubuntu-latest
12
+
13
+ env :
14
+ DOTNET_NOLOGO : true
15
+ DOTNET_CLI_TELEMETRY_OPTOUT : true
16
+
17
+ steps :
18
+ - uses : actions/checkout@v4
19
+ with :
20
+ fetch-depth : 0 # avoid shallow clone so nbgv can do its work.
21
+
22
+ - name : Update Samples
23
+ run : ./scripts/UpdateSamples.ps1
24
+
25
+ - name : Create Pull Request
26
+ uses : peter-evans/create-pull-request@v7
27
+ with :
28
+ committer :
GitHub <[email protected] >
29
+ author : ${{ github.actor }} <${{ github.actor }}@users.noreply.github.com>
30
+ signoff : false
31
+ branch : update-samples
32
+ delete-branch : true
33
+ title : |
34
+ Update Quickstart & AVM Sample Links
35
+ draft : false
You can’t perform that action at this time.
0 commit comments