We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent a4560c8 commit f360cb3Copy full SHA for f360cb3
1 file changed
.github/workflows/audit-fix.yml
@@ -30,7 +30,7 @@ jobs:
30
31
- name: Create pull request
32
env:
33
- GH_TOKEN: ${{ secrets.LOCALSTACK_BOT_TOKEN }}
+ GH_TOKEN: ${{ secrets.GITHUB_TOKEN }}
34
GH_REPO: ${{ github.repository }}
35
run: |
36
if git diff --quiet; then
@@ -39,8 +39,8 @@ jobs:
39
fi
40
41
BRANCH="npm-audit-fix-$(date +%Y%m%d)"
42
- git config user.name "localstack-bot"
43
- git config user.email "localstack-bot@users.noreply.github.com"
+ git config user.name "github-actions[bot]"
+ git config user.email "github-actions[bot]@users.noreply.github.com"
44
git checkout -b "$BRANCH"
45
git add package.json package-lock.json
46
git commit -m "chore(deps): npm audit fix"
0 commit comments