A reusable GitHub Action for auto-responding to issues and pull requests.
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: falsecheck the action.yml for more 'with' fields.
GitHub Bot Auto-Answer is not certified by GitHub. It is provided by a third-party and is governed by separate terms of service, privacy policy, and support documentation.