1
0
mirror of https://github.com/TeamNewPipe/NewPipe synced 2026-05-03 20:21:24 +00:00

Merge branch 'dev' into refactor

This commit is contained in:
Aayush Gupta
2026-01-26 22:53:17 +08:00
178 changed files with 1479 additions and 1452 deletions

View File

@@ -25,9 +25,11 @@ jobs:
- uses: actions/checkout@v4
- name: Get backport metadata
# the target branch is the first argument after `/backport`
env:
COMMENT_BODY: ${{ github.event.comment.body }}
run: |
set -euo pipefail
body="${{ github.event.comment.body }}"
body="$COMMENT_BODY"
line=${body%%$'\n'*} # Get the first line
if [[ $line =~ ^/backport[[:space:]]+([^[:space:]]+) ]]; then