Skip to content

An action for filtering pull requests from first-time contributors

License

Notifications You must be signed in to change notification settings

JosephBK/first-contribution

Repository files navigation

First Contribution

This action is a filter which determines if a pull request was opened by a first-time contributor.

Usage

workflow "Welcome Newcomers" {
  on = "pull_request"
  resolves = "Post Welcome Comment"
}

action "Filter Newcomers" {
  uses = "actions/[email protected]"
  secrets = ["GITHUB_TOKEN"]
}

action "Post Welcome Comment" {
  uses = "actions/[email protected]"
  needs = "Filter Newcomers"
  args = "comment Welcome, newcomer!"
  secrets = ["GITHUB_TOKEN"]
}

Contributing

Check out this doc.

License

This action is released under the MIT license. Container images built with this project include third party materials. See THIRD_PARTY_NOTICE.md for details.

Current Status

This action is in active development.

About

An action for filtering pull requests from first-time contributors

Resources

License

Code of conduct

Stars

Watchers

Forks

Packages

No packages published