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 fa6a7f4 commit cdbe440Copy full SHA for cdbe440
.github/workflows/dependabot.yml
@@ -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
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