This reusable workflow adds automated comments on Pull Requests from external contributors. It identifies external contributors as users who are not members of your GitHub organization.
The pr-auto-comments
workflow automatically posts customizable comments on Pull Requests submitted by external contributors (those outside your organization). It helps maintain consistent communication with contributors while reducing manual effort from maintainers.
The workflow can leave comments in these situations:
- On a contributor's first Pull Request to your repository
- When a Pull Request is marked as ready for review
- When a Pull Request is merged
Each comment type can be individually enabled or disabled.
To use this workflow in your repository, create a new workflow file in your .github/workflows
directory:
name: PR Comments
on:
pull_request_target:
types: [opened, ready_for_review, closed]
jobs:
pr-comments:
uses: RequestNetwork/auto-comments/.github/workflows/pr-auto-comments.yml@main
with:
org_name: "your-organization-name"
# Optional: override the default comments
first_pr_comment: |
# Welcome to our project!
Thanks for your first contribution, @{{username}}. We're glad you're here.
secrets:
token: ${{ secrets.GH_PAT_AUTO_COMMENTS }}
Creating a Personal Access Token (PAT) for GitHub is a straightforward process:
- Log in to your GitHub account
- Go to your Settings:
- Click on your profile photo in the top-right corner
- Select "Settings" from the dropdown menu
- Navigate to Developer settings:
- Scroll down to the bottom of the sidebar
- Click on "Developer settings"
- Select Personal access tokens:
- Click on "Personal access tokens"
- Choose "Fine-grained tokens" or "Tokens (classic)" depending on your needs
When creating a fine-grained personal access token, you'll need to configure the following permissions:
Repository permissions:
- Contents: Read (to access repository content)
- Pull requests: Read and Write (to read PR details and add comments)
- Issues: Read and Write (for commenting, as GitHub treats PR comments as issue comments)
- Metadata: Read (required for most API operations)
Organization permissions:
- Members: Read (to check if the PR author is an organization member)
- Generate a new token:
- Click "Generate new token"
- Configure token settings:
- Add a descriptive note to remember what this token is for (e.g., "Auto Comments Workflow")
- Set an expiration date (consider security implications)
- Select the repositories that will use this token
- Select the permissions listed above
- Generate the token:
- Click "Generate token" at the bottom
- Copy your token:
- IMPORTANT: Copy the token immediately as you won't be able to see it again
After generating the token, you need to add it as a repository secret:
You can configure this workflow with either a repository-level secret or an organization-level secret:
- Go to your repository
- Click on "Settings"
- In the left sidebar, click on "Secrets and variables" → "Actions"
- Click "New repository secret"
- Name the secret
GH_PAT_AUTO_COMMENTS
- Paste your token value
- Click "Add secret"
- Go to your organization's main page
- Click on "Settings"
- In the left sidebar, click on "Secrets and variables" → "Actions"
- Click "New organization secret"
- Name the secret
GH_PAT_AUTO_COMMENTS
- Choose your repository access policy (all repositories or select repositories)
- Paste your token value
- Click "Add secret"
Both repository-level and organization-level secrets are accessed the same way in workflows: ${{ secrets.GH_PAT_AUTO_COMMENTS }}
.
For more detailed information about GitHub tokens and permissions, refer to the GitHub documentation on fine-grained personal access tokens.
For more information about using secrets in GitHub Actions, see GitHub's documentation on using secrets in GitHub Actions.
This workflow uses a reference to the branch (@main
) rather than a specific version tag. This means:
- Automatic Updates: When the workflow code is updated in the
main
branch, all repositories referencing it will automatically use the latest version without requiring any changes in those repositories. - Breaking Changes: Be cautious when making changes to the workflow in the
main
branch, as they will immediately affect all dependent repositories. Test significant changes thoroughly before merging them intomain
.
Input | Description |
---|---|
org_name |
GitHub organization name to identify internal team members |
Input | Description | Default | Behavior if empty string |
---|---|---|---|
additional_internal_users |
Additional comma-separated list of usernames to consider as internal | '' |
No additional users excluded |
first_pr_comment |
Message for first PR comments | Default welcome message | First PR comments disabled |
ready_for_review_comment |
Message for ready for review comments | Default guidelines message | Ready for review comments disabled |
merged_pr_comment |
Message for merged PR comments | Default thank you message | Merged PR comments disabled |
Secret | Description | Required | Default |
---|---|---|---|
token |
GitHub token with necessary permissions (see above) | No | github.token |
By default, all comment types are enabled with predefined messages. You can:
- Override a default comment by providing your own message text
- Disable a comment type by providing an empty string
''
For example, to disable ready for review comments:
ready_for_review_comment: '' # Explicitly set to empty string to disable
You can include dynamic content in your messages using placeholders with the format {{variable}}
. The following variables are available:
Variable | Description | Example |
---|---|---|
{{username}} |
The PR author's username | octocat |
{{repository}} |
The repository name | auto-comments |
{{org}} |
The organization/owner name | your-org |
Example usage in a custom message:
first_pr_comment: |
# Welcome @{{username}}!
Thank you for your first contribution to the {{repository}} repository.
We at {{org}} appreciate your interest in our project.
You can use most Markdown syntax in your comment messages, including:
- Headings (
# Heading
) - Lists (
- Item
) - Formatting (bold, italic)
- Links (
[text](url)
) - Images
- Tables
- Emojis (
:tada:
)
Note: Triple backtick code blocks are not supported due to technical limitations with the GitHub Actions script environment. If you need to include code examples, consider using inline code with single backticks or HTML alternatives.
-
The workflow first checks the PR author in a central job:
- Determines if they are an external contributor (not in your org or additional users list)
- For first PR comments, checks if this is their first contribution
-
Based on the event type (opened/ready for review/merged) and author status:
- Runs only the appropriate comment job
- Only if the corresponding comment text is not empty
-
Each enabled job posts its specific comment to the PR
This architecture ensures contributor checks run only once per workflow execution, making the process more efficient.
This workflow uses pull_request_target
to ensure it has the necessary permissions to comment on PRs. Since this event has access to secrets, the workflow is designed to only perform safe operations (commenting) and does not check out code from external PRs.
The workflow requires a token with org:read
permission to check organization membership.
For integration testing purposes, we maintain a separate auto-comments-test repository. This repository provides a real-world environment for testing the workflow.
If you're developing changes to this workflow, you should test them using the integration test repository before merging to the main branch.
MIT