Skip to content

Adding entry point to launch_mapdl #5644

Adding entry point to launch_mapdl

Adding entry point to launch_mapdl #5644

Workflow file for this run

name: Approve PRs
on:
workflow_dispatch:
issue_comment:
types: [created, edited]
jobs:
autoapprove:
# This job only runs for pull request comments
name: PR comment
if: github.event.issue.pull_request &&
contains(github.event.comment.body, '@pyansys-ci-bot LGTM') && (
github.event.comment.user.login == 'germa89'
)
permissions:
pull-requests: write
runs-on: ubuntu-latest
steps:
- uses: hmarr/auto-approve-action@v3
with:
review-message: ":white_check_mark: Approving this PR because [${{ github.event.comment.user.login }}](https://github.com/${{ github.event.comment.user.login }}) said so in [here](${{ github.event.comment.html_url }}) :grimacing:"
pull-request-number: ${{ github.event.issue.number }}
github-token: ${{ secrets.PYANSYS_CI_BOT_TOKEN }}