From b2fc27d93c6e0c662fe782494ec079006c91e518 Mon Sep 17 00:00:00 2001 From: jovnc <95868357+jovnc@users.noreply.github.com> Date: Sat, 11 Apr 2026 14:15:27 +0800 Subject: [PATCH 1/2] chore: add first time contributor action --- .github/workflows/first-time-contributor.yml | 13 +++++++++++++ 1 file changed, 13 insertions(+) create mode 100644 .github/workflows/first-time-contributor.yml diff --git a/.github/workflows/first-time-contributor.yml b/.github/workflows/first-time-contributor.yml new file mode 100644 index 0000000..5515acd --- /dev/null +++ b/.github/workflows/first-time-contributor.yml @@ -0,0 +1,13 @@ +name: First-time contributor reminder + +on: + pull_request_target: + types: [opened] + +permissions: + issues: write + +jobs: + remind: + uses: git-mastery/actions/.github/workflows/first-time-contributor.yml@main + secrets: inherit From 9f41f5238331a5a98f99cad5ad80c1d151757c5d Mon Sep 17 00:00:00 2001 From: jovnc <95868357+jovnc@users.noreply.github.com> Date: Sat, 11 Apr 2026 14:21:31 +0800 Subject: [PATCH 2/2] chore: change permissions --- .github/workflows/first-time-contributor.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/first-time-contributor.yml b/.github/workflows/first-time-contributor.yml index 5515acd..d245e7b 100644 --- a/.github/workflows/first-time-contributor.yml +++ b/.github/workflows/first-time-contributor.yml @@ -5,7 +5,7 @@ on: types: [opened] permissions: - issues: write + pull-requests: write jobs: remind: