2019-08-07 10:27:30 -04:00
|
|
|
|
# First Interaction
|
2019-08-02 17:15:36 +00:00
|
|
|
|
|
2025-02-19 13:47:20 -05:00
|
|
|
|
[](https://github.com/super-linter/super-linter)
|
|
|
|
|
|

|
|
|
|
|
|
[](https://github.com/actions/first-interaction/actions/workflows/check-dist.yml)
|
|
|
|
|
|
[](https://github.com/actions/first-interaction/actions/workflows/codeql-analysis.yml)
|
|
|
|
|
|
[](./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.
|
2019-08-07 10:27:30 -04:00
|
|
|
|
|
2025-06-02 10:26:52 +01:00
|
|
|
|
### Note
|
|
|
|
|
|
|
2025-07-15 14:45:28 -04:00
|
|
|
|
Thank you for your interest in this GitHub action, however, right now we are not
|
|
|
|
|
|
taking contributions.
|
2025-06-02 10:26:52 +01:00
|
|
|
|
|
2025-07-15 14:45:28 -04:00
|
|
|
|
We continue to focus our resources on strategic areas that help our customers be
|
|
|
|
|
|
successful while making developers' lives easier. While GitHub Actions remains a
|
|
|
|
|
|
key part of this vision, we are allocating resources towards other areas of
|
|
|
|
|
|
Actions and are not taking contributions to this repository at this time. The
|
|
|
|
|
|
GitHub public roadmap is the best place to follow along for any updates on
|
|
|
|
|
|
features we’re working on and what stage they’re in.
|
2025-06-02 10:26:52 +01:00
|
|
|
|
|
2025-07-15 14:45:28 -04:00
|
|
|
|
We are taking the following steps to better direct requests related to GitHub
|
|
|
|
|
|
Actions, including:
|
2025-06-02 10:26:52 +01:00
|
|
|
|
|
2025-07-15 14:45:28 -04:00
|
|
|
|
1. We will be directing questions and support requests to our
|
|
|
|
|
|
[Community Discussions area](https://github.com/orgs/community/discussions/categories/actions)
|
2025-06-02 10:26:52 +01:00
|
|
|
|
|
2025-07-15 14:45:28 -04:00
|
|
|
|
2. High Priority bugs can be reported through Community Discussions or you can
|
|
|
|
|
|
report these to our support team
|
|
|
|
|
|
https://support.github.com/contact/bug-report.
|
2025-06-02 10:26:52 +01:00
|
|
|
|
|
2025-06-02 10:30:48 +01:00
|
|
|
|
3. Security Issues should be handled as per our [security.md](security.md)
|
2025-06-02 10:26:52 +01:00
|
|
|
|
|
2025-07-15 14:45:28 -04:00
|
|
|
|
We will still provide security updates for this project and fix major breaking
|
|
|
|
|
|
changes during this time.
|
2025-06-02 10:26:52 +01:00
|
|
|
|
|
|
|
|
|
|
You are welcome to still raise bugs in this repo.
|
|
|
|
|
|
|
2025-02-19 12:13:48 -05:00
|
|
|
|
## Usage
|
2019-08-07 10:27:30 -04:00
|
|
|
|
|
|
|
|
|
|
See [action.yml](action.yml)
|
|
|
|
|
|
|
|
|
|
|
|
```yaml
|
2020-12-22 17:20:57 -05:00
|
|
|
|
name: Greetings
|
|
|
|
|
|
|
2025-02-19 13:47:20 -05:00
|
|
|
|
on:
|
|
|
|
|
|
pull_request:
|
|
|
|
|
|
types:
|
|
|
|
|
|
- opened
|
|
|
|
|
|
issues:
|
|
|
|
|
|
types:
|
|
|
|
|
|
- opened
|
|
|
|
|
|
|
|
|
|
|
|
permissions:
|
|
|
|
|
|
issues: write
|
|
|
|
|
|
pull-requests: write
|
2020-12-22 17:20:57 -05:00
|
|
|
|
|
|
|
|
|
|
jobs:
|
|
|
|
|
|
greeting:
|
2025-02-19 13:47:20 -05:00
|
|
|
|
name: Greet First-Time Contributors
|
2020-12-22 17:20:57 -05:00
|
|
|
|
runs-on: ubuntu-latest
|
2025-02-19 13:47:20 -05:00
|
|
|
|
|
2020-12-22 17:20:57 -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
|
2019-08-07 10:27:30 -04:00
|
|
|
|
|
2025-02-19 13:47:20 -05:00
|
|
|
|
This is the message that will be displayed!
|
|
|
|
|
|
pr-message: |
|
|
|
|
|
|
# PR Message with Markdown
|
2019-08-07 10:27:30 -04:00
|
|
|
|
|
2025-02-19 13:47:20 -05:00
|
|
|
|
This is the message that will be displayed!
|
|
|
|
|
|
```
|