Skip to content

Commit

Permalink
chore: setup-renovate-changesets
Browse files Browse the repository at this point in the history
  • Loading branch information
ryanbas21 committed Feb 13, 2025
1 parent 57047b1 commit 0a5d8f8
Showing 1 changed file with 28 additions and 0 deletions.
28 changes: 28 additions & 0 deletions .github/workflows/changesets-renovate.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,28 @@
name: Generate changeset for Renovate

on:
merge_group:
pull_request_target:
paths:
- '.github/workflows/changesets-renovate.yml'
- '**/pnpm-lock.yaml'
- '**/package.json'

jobs:
generate-changeset:
runs-on: ubuntu-latest
if: github.actor == 'renovate[bot]' && github.repository == 'ForgeRock/ping-javascript-sdk'
steps:
- name: Checkout
uses: actions/checkout@v4
with:
fetch-depth: 2
ref: ${{ github.head_ref }}
- name: Git Identity
run: |
git config --global user.name 'github-actions[bot]'
- uses: pnpm/[email protected]

- name: Run changesets-renovate
run: pnpm dlx @scaleway/changesets-renovate

0 comments on commit 0a5d8f8

Please sign in to comment.