Update autoMerge.yml

This commit is contained in:
Preston 2021-08-19 23:38:49 -04:00 committed by GitHub
parent 0cd8189b3b
commit f1eedd0b59
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 7 additions and 15 deletions

View File

@ -1,24 +1,16 @@
name: Auto Merge PR name: Create Flatpak PR
# Controls when the workflow will run
on: on:
# Triggers the workflow on push or pull request events but only for the development branch
pull_request: pull_request:
types: [opened, synchronize, reopened] types: [opened, synchronize, reopened]
# A workflow run is made up of one or more jobs that can run sequentially or in parallel
jobs: jobs:
# This workflow contains a single job called "build"
build: build:
# The type of runner that the job will run on
runs-on: ubuntu-latest runs-on: ubuntu-latest
environment: workflow_env
# Steps represent a sequence of tasks that will be executed as part of the job
steps: steps:
- name: Enable Auto Merge - name: Auto Merge PR
run: | run: |
echo ${{ secrets.MERGE_TOKEN }} >> auth.txt echo ${{ secrets.PUSH_TOKEN }} >> auth.txt
gh auth login --with-token < auth.txt gh auth login --with-token < auth.txt
rm auth.txt rm auth.txt
gh pr merge https://github.com/FreeTubeApp/FreeTube/pull/${{ github.event.pull_request.number }} --auto gh pr merge https://github.com/FreeTubeApp/FreeTube/pull/${{ github.event.pull_request.number }} --auto