This repository has been archived by the owner on Oct 2, 2023. It is now read-only.
Checking if elegible for auto-approving PR #89
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Auto-approve PR | |
run-name: Checking if elegible for auto-approving PR | |
on: pull_request | |
jobs: | |
auto-approve: | |
name: Perform Auto-approve PR | |
runs-on: ubuntu-latest | |
permissions: | |
pull-requests: write | |
if: github.event.pull_request.user.login == ${{ github.repository_owner }} | |
steps: | |
- name: Harden Runner | |
uses: step-security/harden-runner@80b2fcb96ae248b7b80d284855acf93c338a6a0a # v2.5.0 | |
with: | |
egress-policy: audit | |
- name: Auto-approve PR via seyLu Bot | |
uses: hmarr/auto-approve-action@134e1011866211ab5b452c8ab06ea0447e888610 # v3.2.1 | |
with: | |
github-token: ${{ secrets.SEYLUBOT_PAT }} |