Skip to content

feature improvments & small fixes #1

feature improvments & small fixes

feature improvments & small fixes #1

Workflow file for this run

name: Auto Merge
on:
pull_request:
types: [opened, synchronize, reopened]
jobs:
enable-auto-merge:
runs-on: ubuntu-latest
if: github.event.pull_request.user.login == 'FaserF' || github.event.pull_request.user.type == 'Bot'
permissions:
contents: write
pull-requests: write
steps:
- name: Enable Auto-Merge
env:
GH_TOKEN: ${{ secrets.GITHUB_TOKEN }}
PR_URL: ${{ github.event.pull_request.html_url }}
run: |
gh pr merge --auto --merge "$PR_URL"