We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 744ff0f commit 7b005acCopy full SHA for 7b005ac
.github/workflows/dotnet_benchmark_runner.yml
@@ -32,6 +32,8 @@ jobs:
32
steps:
33
- name: Checkout
34
uses: actions/checkout@v4
35
+ with:
36
+ token: ${{ secrets.GITHUB_TOKEN }}
37
38
- name: Setup .NET
39
uses: actions/setup-dotnet@v4
@@ -75,6 +77,8 @@ jobs:
75
77
dotnet dotnet-version-updater.cs
76
78
79
# Commit and push the updated JSON
80
+ git config user.name "github-actions[bot]"
81
+ git config user.email "github-actions[bot]@users.noreply.github.com"
82
git add dotnet-versions.json
83
git commit -m "Update .NET version for benchmark run on $(date -I)"
84
git push origin gh-pages
0 commit comments