Files
first-interaction/README.md

53 lines
1.7 KiB
Markdown
Raw Permalink Normal View History

# First Interaction
2019-08-02 17:15:36 +00:00
2025-02-19 13:47:20 -05:00
[![Super-Linter](https://github.com/actions/first-interaction/actions/workflows/linter.yml/badge.svg)](https://github.com/super-linter/super-linter)
![CI](https://github.com/actions/first-interaction/actions/workflows/ci.yml/badge.svg)
[![Check dist/](https://github.com/actions/first-interaction/actions/workflows/check-dist.yml/badge.svg)](https://github.com/actions/first-interaction/actions/workflows/check-dist.yml)
[![CodeQL](https://github.com/actions/first-interaction/actions/workflows/codeql-analysis.yml/badge.svg)](https://github.com/actions/first-interaction/actions/workflows/codeql-analysis.yml)
[![Coverage](./badges/coverage.svg)](./badges/coverage.svg)
An action for filtering pull requests (PRs) and issues from first-time
contributors.
When a first-time contributor opens a PR or issue, this action will add a
comment to the PR or issue with a message of your choice. This action is useful
for welcoming first-time contributors to your project and providing them with
information about how to contribute effectively.
2025-02-19 12:13:48 -05:00
## Usage
See [action.yml](action.yml)
```yaml
name: Greetings
2025-02-19 13:47:20 -05:00
on:
pull_request:
types:
- opened
issues:
types:
- opened
permissions:
issues: write
pull-requests: write
jobs:
greeting:
2025-02-19 13:47:20 -05:00
name: Greet First-Time Contributors
runs-on: ubuntu-latest
2025-02-19 13:47:20 -05:00
steps:
2025-02-19 13:47:20 -05:00
- uses: actions/first-interaction@vX.Y.Z # Set this to the latest release
with:
issue-message: |
# Issue Message with Markdown
2025-02-19 13:47:20 -05:00
This is the message that will be displayed!
pr-message: |
# PR Message with Markdown
2025-02-19 13:47:20 -05:00
This is the message that will be displayed!
```