Skip to content

Commit

Permalink
[feat] Combine PRs GitHub Action yaml file
Browse files Browse the repository at this point in the history
With the commit, a sequence of PRs created automatically by @dependabot
will be combined into a new PR.
  • Loading branch information
n1cogrv committed Nov 7, 2024
1 parent 31a7536 commit 078600c
Showing 1 changed file with 21 additions and 0 deletions.
21 changes: 21 additions & 0 deletions .github/workflows/combine-dependabot-prs.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
name: Combine PRs

on:
workflow_dispatch

# The minimum permissions required to run this Action
permissions:
contents: write
pull-requests: write
checks: read

jobs:
combine-prs:
runs-on: ubuntu-latest

steps:
- name: combine-prs
id: combine-prs
uses: github/[email protected]
with:
labels: "dependencies"

0 comments on commit 078600c

Please sign in to comment.