amplify icon indicating copy to clipboard operation
amplify copied to clipboard

Auto messages for Pull Request

Open Alex-is-Gonzalez opened this issue 4 months ago • 2 comments

Description

Add-autoresponse is a GitHub Action that automatically adds a preconfigured response to commentable items.

How to implement

Step 1: Create a Workflow File

.github/workflows/auto-response.yml

Step 2: Choose your Trigger

You can configure the action to respond to:

  • 🐛 New Issues

  • 🔀 Pull Request Merges

EX. Auto-Respone on New Issue

name: Issue Autoresponse

on:
  issues:
    types: [opened]

jobs:
  auto-response:
    runs-on: ubuntu-latest

    steps:
    - uses: derekprior/add-autoresponse@master
      env:
        GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
      with:
        respondableId: ${{ github.event.issue.node_id }}
        response: "Maintenance Mode!"
        author: ${{ github.event.issue.user.login }}
        exemptedAuthors: "johnsmith, janedoe"

Alex-is-Gonzalez avatar Oct 09 '25 19:10 Alex-is-Gonzalez

Branch: issue-1076

Dunridge avatar Oct 10 '25 17:10 Dunridge

https://github.com/marketplace/actions/add-autoresponse

Alex-is-Gonzalez avatar Oct 15 '25 01:10 Alex-is-Gonzalez