We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent be82610 commit a6a916eCopy full SHA for a6a916e
.github/workflows/scripts/dependabot-pr.sh
@@ -17,8 +17,8 @@
17
git config user.name opentelemetrybot
18
git config user.email [email protected]
19
20
-PR_NAME=dependabot-prs/`date +'%Y-%m-%dT%H%M%S'`
21
-git checkout -b $PR_NAME
+BRANCH=dependabot/dependabot-prs/`date +'%Y-%m-%dT%H%M%S'`
+git checkout -b $BRANCH
22
23
IFS=$'\n'
24
requests=($( gh pr list --search "author:app/dependabot" --json title --jq '.[].title' ))
@@ -60,6 +60,6 @@ git add go.sum go.mod
60
git add "**/go.sum" "**/go.mod"
61
git commit -m "dependabot updates `date`
62
$message"
63
-git push origin $PR_NAME
+git push origin $BRANCH
64
65
gh pr create --title "[chore] dependabot updates `date`" --body "$message"
0 commit comments