Nick Alteen 900dc3284e Merge pull request #311 from actions/ncalteen/refactor
Convert from Container to TypeScript Action
2025-07-15 14:39:54 -04:00
2025-02-19 13:47:20 -05:00
2025-02-19 13:47:20 -05:00
2025-02-19 12:28:55 -05:00
2025-02-19 14:01:25 -05:00
2025-02-19 13:47:42 -05:00
2025-02-19 12:28:55 -05:00
2025-02-19 13:47:20 -05:00
2025-02-19 13:47:20 -05:00
2025-02-19 13:47:20 -05:00
2025-02-19 12:28:55 -05:00
2025-02-19 12:28:55 -05:00
2025-02-19 12:28:55 -05:00
2025-02-19 12:28:55 -05:00
2025-02-19 12:28:55 -05:00
2025-02-19 12:28:55 -05:00
2025-02-19 12:28:55 -05:00
2025-02-19 12:28:55 -05:00
2025-02-19 13:47:20 -05:00
2025-02-19 12:28:55 -05:00
2025-02-19 13:47:31 -05:00
2025-02-19 12:28:55 -05:00
2025-02-19 13:47:20 -05:00
2025-02-19 13:47:20 -05:00
2025-02-19 13:47:20 -05:00
2025-02-19 13:47:20 -05:00

First Interaction

Super-Linter CI Check dist/ CodeQL Coverage

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.

Note

Thank you for your interest in this GitHub action, however, right now we are not taking contributions.

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 were working on and what stage theyre in.

We are taking the following steps to better direct requests related to GitHub Actions, including:

  1. We will be directing questions and support requests to our Community Discussions area

  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.

  3. Security Issues should be handled as per our security.md

We will still provide security updates for this project and fix major breaking changes during this time.

You are welcome to still raise bugs in this repo.

Usage

See action.yml

name: Greetings

on:
  pull_request:
    types:
      - opened
  issues:
    types:
      - opened

permissions:
  issues: write
  pull-requests: write

jobs:
  greeting:
    name: Greet First-Time Contributors
    runs-on: ubuntu-latest

    steps:
      - uses: actions/first-interaction@vX.Y.Z # Set this to the latest release
        with:
          issue-message: |
            # Issue Message with Markdown

            This is the message that will be displayed!
          pr-message: |
            # PR Message with Markdown

            This is the message that will be displayed!
Description
Mirror of github.com/actions/first-interaction
Readme 3.4 MiB
Languages
TypeScript 80.3%
JavaScript 19.7%