chore(devdeps): update dependency css-loader to v7.1.2 #531
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Generate changeset for Renovate | |
on: | |
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 == 'kinguru-io/kinguru-monorepo' | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v4 | |
with: | |
fetch-depth: 2 | |
ref: ${{ github.head_ref }} | |
token: ${{ secrets.PROJEN_GITHUB_TOKEN }} | |
- name: Git Identity | |
run: | | |
git config user.name "github-actions" | |
git config user.email "github-actions@github.com" | |
- uses: pnpm/action-setup@v2.4.0 | |
with: | |
version: "8" | |
- name: Run changesets-renovate | |
run: pnpm dlx @scaleway/changesets-renovate |