2021-08-20 14:49:25 +00:00
|
|
|
name: Auto Merge PR
|
2021-08-19 21:28:39 +00:00
|
|
|
on:
|
2021-08-20 14:48:24 +00:00
|
|
|
pull_request_target:
|
2021-08-20 02:05:47 +00:00
|
|
|
types: [opened, synchronize, reopened]
|
2021-08-19 21:28:39 +00:00
|
|
|
|
|
|
|
jobs:
|
|
|
|
build:
|
2021-08-20 03:52:14 +00:00
|
|
|
runs-on: ubuntu-latest
|
2021-08-19 21:28:39 +00:00
|
|
|
|
|
|
|
steps:
|
2021-08-20 03:38:49 +00:00
|
|
|
- name: Auto Merge PR
|
|
|
|
run: |
|
2021-08-20 14:49:25 +00:00
|
|
|
echo ${{ secrets.PUSH_TOKEN }} >> auth.txt
|
2021-08-20 03:38:49 +00:00
|
|
|
gh auth login --with-token < auth.txt
|
|
|
|
rm auth.txt
|
2021-08-20 03:53:05 +00:00
|
|
|
gh pr merge https://github.com/FreeTubeApp/FreeTube/pull/${{ github.event.pull_request.number }} --auto --squash
|