[NIGHTLY DEV RELEASE] 0.6.1-alpha.0-20231019-738744a #38
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
# This Workflow is handling the automated approval of PRs that are tagged with specific | |
# label "automated pr" and is used to handle automatic releases | |
name: Auto approve | |
on: | |
pull_request: | |
types: [labeled] | |
jobs: | |
auto-approve: | |
if: | | |
github.actor == 'Automator77' && | |
github.event.label.name == 'automated pr' | |
runs-on: ubuntu-latest | |
steps: | |
- uses: hmarr/auto-approve-action@v3 | |
with: | |
github-token: ${{ secrets.GITHUB_TOKEN }} |