Skip to content

Combine dependabot prs #12

Combine dependabot prs

Combine dependabot prs #12

name: Combine dependabot prs
on:
schedule:
# run every 1st of the month at 00:42 UTC
- cron: '42 0 1 * *'
workflow_dispatch:
permissions:
contents: write
pull-requests: write
checks: read
jobs:
combine-prs:
runs-on: ubuntu-latest
steps:
- name: use app token
uses: peter-murray/workflow-application-token-action@8e1ba3bf1619726336414f1014e37f17fbadf1db
id: generate_token
with:
application_id: ${{ secrets.APP_ID }}
application_private_key: ${{ secrets.PRIVATE_KEY }}
- name: combine prs
id: combine-prs
uses: github/combine-prs@8e631fc3eb9337039c61b2b89219bf2a2259a4d6
with:
pr_title: 🤖 Combined @dependabot PRs
github_token: ${{ steps.generate_token.outputs.token }}