File tree Expand file tree Collapse file tree 1 file changed +5
-4
lines changed Expand file tree Collapse file tree 1 file changed +5
-4
lines changed Original file line number Diff line number Diff line change @@ -24,16 +24,17 @@ jobs:
24
24
./documentation/manpages/tool/run_docker.sh
25
25
26
26
if [[ -n $(git status -s) ]]; then
27
- git config user.name 'TODO '
28
- git config user.email 'TODO@example .com'
27
+ git config user.name 'github-actions '
28
+ git config user.email 'github-actions@github .com'
29
29
date=$(date +%F)
30
30
git add .
31
- title="Update man pages"
31
+ title="[automated] Update man pages"
32
+ body="This action is executed twice a month to automatically update the manpages based on the latest changes to the dotnet/docs repo"
32
33
branch=update-man-page-$date
33
34
git checkout -b $branch
34
35
git commit -a -m "$title"
35
36
git push -u origin $branch --force
36
- gh pr create --base main --head $branch --title "$title" --body "Auto-generated "
37
+ gh pr create --base main --head $branch --title "$title" --body "$body "
37
38
fi
38
39
env :
39
40
GH_TOKEN : ${{ github.token }}
You can’t perform that action at this time.
0 commit comments