ci(github-actions): add automatic ytdl update into github actions

This commit is contained in:
raiper34
2025-02-01 16:02:41 +01:00
parent 9baf3b9eb7
commit b2fbb01a74
2 changed files with 18 additions and 5 deletions
+17
View File
@@ -0,0 +1,17 @@
name: Auto-merge Github Actions
on:
repository_dispatch:
types: [ create-pull-request ]
permissions:
pull-requests: write
contents: write
jobs:
automerge:
runs-on: ubuntu-latest
if: github.actor == 'github-actions'
steps:
- uses: peter-evans/enable-pull-request-automerge@v3
with:
pull-request-number: ${{ github.event.pull_request.number }}