From 42908ceb6ffacf78628dcd372bb9ded5fd811b33 Mon Sep 17 00:00:00 2001 From: Krishna Agarwal Date: Wed, 24 Aug 2022 18:15:00 +0530 Subject: [PATCH] greetings --- .github/workflows/community.yml | 22 ++++++++++++++++++++++ 1 file changed, 22 insertions(+) create mode 100644 .github/workflows/community.yml diff --git a/.github/workflows/community.yml b/.github/workflows/community.yml new file mode 100644 index 00000000..1d88e1bc --- /dev/null +++ b/.github/workflows/community.yml @@ -0,0 +1,22 @@ +on: + fork: + issues: + types: [opened] + issue_comment: + types: [created] + pull_request_target: + types: [opened] + pull_request_review_comment: + types: [created] + +jobs: + welcome: + runs-on: ubuntu-latest + steps: + - uses: actions/checkout@v1 + - uses: EddieHubCommunity/gh-action-community/src/welcome@main + with: + github-token: ${{ secrets.GITHUB_TOKEN }} + issue-message: '

Hey, Welcome to this repo, Congratulations on opening your issue. Keep Contributing to Kubescape

' + pr-message: '

Hey, Welcome to this repo, Congratulations on opening your Pull Request. Keep Contributing to Kubescape

' + footer: '

We''ll try to review and add you work as soon as possible and a maintainer will get back to you soon!

'