This is an automated email from the ASF dual-hosted git repository.
jiayu pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/sedona.git
The following commit(s) were added to refs/heads/master by this push:
new a733166ed [SEDONA-612] Add the `actions/first-interaction` workflow
(#1483)
a733166ed is described below
commit a733166edfa2da08cb2b8c2b938b60b37b3cc865
Author: John Bampton <[email protected]>
AuthorDate: Fri Jun 21 08:45:39 2024 +1000
[SEDONA-612] Add the `actions/first-interaction` workflow (#1483)
https://github.com/actions/first-interaction?tab=readme-ov-file
---
.github/workflows/first-interaction.yml | 18 ++++++++++++++++++
1 file changed, 18 insertions(+)
diff --git a/.github/workflows/first-interaction.yml
b/.github/workflows/first-interaction.yml
new file mode 100644
index 000000000..b91e3ce5f
--- /dev/null
+++ b/.github/workflows/first-interaction.yml
@@ -0,0 +1,18 @@
+name: First Interaction
+
+on:
+ issues:
+ types: [opened]
+ pull_request:
+ types: [opened]
+
+jobs:
+ first-interaction:
+ runs-on: ubuntu-latest
+ steps:
+ - name: First Interaction
+ uses: actions/first-interaction@v1
+ with:
+ repo-token: ${{ secrets.GITHUB_TOKEN }}
+ issue-message: "Thank you for your interest in Apache Sedona! We
appreciate you opening your first issue. Contributions like yours help make
Apache Sedona better."
+ pr-message: "Welcome and thank you for your first pull request! We
appreciate your contribution to Apache Sedona. Your code changes will be
reviewed shortly."