Skip to content

Commit 4f1d050

Browse files
authored
Add a workflow to use simple-dependabot-changeset (#106)
1 parent a4b7048 commit 4f1d050

File tree

2 files changed

+19
-0
lines changed

2 files changed

+19
-0
lines changed
Lines changed: 19 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,19 @@
1+
name: Add Changeset to Dependabot PRs
2+
3+
on:
4+
pull_request:
5+
types: [opened, synchronize]
6+
7+
concurrency: ${{ github.workflow }}-${{ github.ref }}
8+
9+
jobs:
10+
add-changeset:
11+
if: github.actor == 'dependabot[bot]'
12+
runs-on: ubuntu-latest
13+
permissions:
14+
contents: write
15+
steps:
16+
- uses: actions/checkout@v4
17+
- uses: IzumiSy/simple-dependabot-changeset@main
18+
with:
19+
pkgName: '@izumisy/mcp-duckdb-memory-server'
File renamed without changes.

0 commit comments

Comments
 (0)