-
Notifications
You must be signed in to change notification settings - Fork 103
Open
Description
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"
Metadata
Metadata
Assignees
Labels
No labels