Skip to content

Commit

Permalink
fix(ci): dependabot update pnpm-lock
Browse files Browse the repository at this point in the history
  • Loading branch information
ZakaryCode committed Sep 20, 2022
1 parent b32214f commit 208d5c4
Showing 1 changed file with 8 additions and 3 deletions.
11 changes: 8 additions & 3 deletions .github/workflows/dependabot-update-lockfile.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,16 +13,21 @@ jobs:
- name: Checkout
uses: actions/checkout@v3
with :
ref : ${{ github.ref || github.head_ref || github.ref_name }}
ref : ${{ github.head_ref }}
- name: Git Identity
run: |
git config --global user.name 'github-actions[bot]'
git config --global user.email 'github-actions[bot]@users.noreply.github.com'
git remote set-url origin https://x-access-token:${GITHUB_TOKEN}@github.com/$GITHUB_REPOSITORY
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
- name: install
uses: pnpm/action-setup@v2.2.2
with:
version: 7
run_install: |
- recursive: true
- run: |
git config --global user.name github-actions[bot]
git config --global user.email github-actions[bot]@users.noreply.github.com
git add pnpm-lock.yaml
git commit -m "build(deps-dev): update pnpm-lock.yaml"
git push

0 comments on commit 208d5c4

Please sign in to comment.