We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 13c0bd6 commit 035301bCopy full SHA for 035301b
.github/workflows/changesets-renovate.yml
@@ -0,0 +1,30 @@
1
+name: Generate changeset for Renovate
2
+
3
+on:
4
+ merge_group:
5
+ pull_request_target:
6
7
+permissions:
8
+ contents: write
9
+ pull-requests: write
10
11
+jobs:
12
+ generate-changeset:
13
+ runs-on: ubuntu-latest
14
+ if: github.actor == 'renovate[bot]'
15
+ steps:
16
+ - name: Checkout
17
+ uses: actions/checkout@v4
18
+ with:
19
+ fetch-depth: 2
20
+ ref: ${{ github.head_ref }}
21
22
+ - name: Git Identity
23
+ run: |
24
+ git config --global user.name "github-actions[bot]"
25
+ git config --global user.email "41898282+github-actions[bot]@users.noreply.github.com"
26
27
+ - uses: pnpm/action-setup@v4.1.0
28
29
+ - name: Run changesets-renovate
30
+ run: pnpm dlx @scaleway/changesets-renovate
0 commit comments