Skip to content

Latest commit

 

History

History
37 lines (26 loc) · 833 Bytes

README.md

File metadata and controls

37 lines (26 loc) · 833 Bytes

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.