Skip to content

First interaction

Actions
Greet new contributors when they create their first issue or open their first pull request
v2.0.0
Latest
Verified creator
Star (796)

Tags

 (1)

Verified

GitHub has manually verified the creator of the action as an official partner organization. For more info see About badges in GitHub Marketplace.

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.

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/[email protected] # 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!

About

Greet new contributors when they create their first issue or open their first pull request
v2.0.0
Latest

Verified

GitHub has manually verified the creator of the action as an official partner organization. For more info see About badges in GitHub Marketplace.

Tags

 (1)