19 lines
457 B
YAML
19 lines
457 B
YAML
name: Create Flatpak PR
|
|
on:
|
|
pull_request:
|
|
types: [opened, synchronize, reopened]
|
|
|
|
jobs:
|
|
build:
|
|
runs-on: ubuntu-latest
|
|
|
|
steps:
|
|
- name: Auto Merge PR
|
|
env:
|
|
PUSH_TOKEN: ${{ secrets.PUSH_TOKEN }}
|
|
run: |
|
|
echo $env:PUSH_TOKEN >> auth.txt
|
|
gh auth login --with-token < auth.txt
|
|
rm auth.txt
|
|
gh pr merge https://github.com/FreeTubeApp/FreeTube/pull/${{ github.event.pull_request.number }} --auto
|