Skip to content

Commit

Permalink
chore: try to have dependabot automatically make a changeset
Browse files Browse the repository at this point in the history
  • Loading branch information
quantizor committed Dec 4, 2024
1 parent fa6a7f4 commit cdbe440
Showing 1 changed file with 24 additions and 0 deletions.
24 changes: 24 additions & 0 deletions .github/workflows/dependabot.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,24 @@
name: Dependabot

on:
pull_request_target:
types: [opened, synchronize, labeled]
branches:
- 'dependabot/*'

jobs:
changeset:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
with:
fetch-depth: 0
ref: ${{ github.event.pull_request.head.ref }}
- name: Upsert changeset
uses: StafflinePeoplePlus/dependabot-changesets@v0.1.5
with:
owner: ${{ github.repository_owner }}
repo: markdown-to-jsx
pr-number: ${{ github.event.pull_request.number }}
token: ${{ secrets.GITHUB_TOKEN }}

0 comments on commit cdbe440

Please sign in to comment.