Skip to content

Commit cdbe440

Browse files
committed
chore: try to have dependabot automatically make a changeset
1 parent fa6a7f4 commit cdbe440

File tree

1 file changed

+24
-0
lines changed

1 file changed

+24
-0
lines changed

.github/workflows/dependabot.yml

Lines changed: 24 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,24 @@
1+
name: Dependabot
2+
3+
on:
4+
pull_request_target:
5+
types: [opened, synchronize, labeled]
6+
branches:
7+
- 'dependabot/*'
8+
9+
jobs:
10+
changeset:
11+
runs-on: ubuntu-latest
12+
steps:
13+
- name: Checkout
14+
uses: actions/checkout@v4
15+
with:
16+
fetch-depth: 0
17+
ref: ${{ github.event.pull_request.head.ref }}
18+
- name: Upsert changeset
19+
uses: StafflinePeoplePlus/dependabot-changesets@v0.1.5
20+
with:
21+
owner: ${{ github.repository_owner }}
22+
repo: markdown-to-jsx
23+
pr-number: ${{ github.event.pull_request.number }}
24+
token: ${{ secrets.GITHUB_TOKEN }}

0 commit comments

Comments
 (0)