Skip to content

Latest commit

 

History

History
27 lines (22 loc) · 767 Bytes

File metadata and controls

27 lines (22 loc) · 767 Bytes

GH Auto-Answer Bot

A reusable GitHub Action for auto-responding to issues and pull requests.

Usage

jobs:
  message:
    runs-on: ubuntu-22.04
    permissions:
      issues: write
      pull-requests: write
    steps:
      - name: Run Auto-Responder
        uses: jmaxdev/automatic-answer@v1
        with:
          token: ${{ secrets.GITHUB_TOKEN }}
          personal_token: ${{ secrets.PERSONAL_ACCESS_TOKEN || '' }}
          use_personal_token: ${{ secrets.PERSONAL_ACCESS_TOKEN != '' }}
          issue_comment: "Thank you for creating this issue! Our team will review it soon."
          pr_comment: "Thank you for your PR! We will review it shortly."
          add_labels: false

check the action.yml for more 'with' fields.