From 62da80643d09730868c4dbc8e0a8762927a6df36 Mon Sep 17 00:00:00 2001 From: emenjivar Date: Sat, 28 Dec 2024 14:06:21 -0600 Subject: [PATCH 1/3] Add greetings pipeline --- .github/workflows/greetings.yml | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) create mode 100644 .github/workflows/greetings.yml diff --git a/.github/workflows/greetings.yml b/.github/workflows/greetings.yml new file mode 100644 index 000000000..dece3d096 --- /dev/null +++ b/.github/workflows/greetings.yml @@ -0,0 +1,16 @@ +name: Greetings + +on: [pull_request_target, issues] + +jobs: + greeting: + runs-on: ubuntu-latest + permissions: + issues: write + pull-requests: write + steps: + - uses: action/first-interaction@v1 + with: + repo-token: ${{ secrets.GITHUB_TOKEN }} + issue-message: "Welcome, thanks for contributing with your first issue" + pr-message: "Welcome, thanks for contributing with your first pull request" From 1bde6d479103bd61ab88472c4f99bc702a7c2982 Mon Sep 17 00:00:00 2001 From: emenjivar Date: Sat, 28 Dec 2024 14:10:34 -0600 Subject: [PATCH 2/3] fix: Use right action name for greetings --- .github/workflows/greetings.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/greetings.yml b/.github/workflows/greetings.yml index dece3d096..d271fbed2 100644 --- a/.github/workflows/greetings.yml +++ b/.github/workflows/greetings.yml @@ -9,7 +9,7 @@ jobs: issues: write pull-requests: write steps: - - uses: action/first-interaction@v1 + - uses: actions/first-interaction@v1 with: repo-token: ${{ secrets.GITHUB_TOKEN }} issue-message: "Welcome, thanks for contributing with your first issue" From 14c45423f97655308bd14a46576e8e8347c7592e Mon Sep 17 00:00:00 2001 From: emenjivar Date: Sat, 28 Dec 2024 14:13:50 -0600 Subject: [PATCH 3/3] Trigger pipeline