Skip to content

Commit

Permalink
Merge branch 'main' into dependabot/npm_and_yarn/development-df30bac025
Browse files Browse the repository at this point in the history
  • Loading branch information
deebov authored May 13, 2024
2 parents ef8f255 + f50c09a commit fc7d732
Showing 1 changed file with 41 additions and 0 deletions.
41 changes: 41 additions & 0 deletions .github/workflows/update-lockfile.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,41 @@
name: Update Lockfile
on: pull_request

permissions:
contents: write
pull-requests: write

jobs:
dependabot:
runs-on: ubuntu-latest
if: github.actor == 'dependabot[bot]'
steps:
- name: Generate GitHub App Token
id: generate_token
uses: tibdex/github-app-token@v1
with:
app_id: ${{ secrets.ORG_GH_RONIN_APP_ID }}
private_key: ${{ secrets.ORG_GH_RONIN_APP_PRIVATE_KEY }}

- name: Code Checkout
uses: actions/[email protected]
with:
token: ${{ steps.generate_token.outputs.token }}

- name: Set up Bun
uses: oven-sh/setup-bun@v1

- name: Install Dependencies
run: bun install

- name: Commit Changes and Push
run: |
# See where these config values come from at https://stackoverflow.com/a/74071223
git config --global user.name "ronin-app[bot]"
git config --global user.email 135042755+ronin-app[bot]@users.noreply.github.com
# Commit changes
git fetch
git checkout ${GITHUB_HEAD_REF}
git pull origin ${GITHUB_HEAD_REF}
git commit -a -m 'Bump `bun.lockb`' --no-verify
git push origin ${GITHUB_HEAD_REF}

0 comments on commit fc7d732

Please sign in to comment.