From 4f5a85f4bacf16ea890978bf3f9f858df3f516a4 Mon Sep 17 00:00:00 2001 From: Kodai Nakamura Date: Wed, 26 Feb 2025 12:48:20 +0900 Subject: [PATCH] chore: add workflow to close issue opened by non-stargazer --- .github/workflows/start-first.yml | 11 +++++++++++ 1 file changed, 11 insertions(+) create mode 100644 .github/workflows/start-first.yml diff --git a/.github/workflows/start-first.yml b/.github/workflows/start-first.yml new file mode 100644 index 0000000..49356ad --- /dev/null +++ b/.github/workflows/start-first.yml @@ -0,0 +1,11 @@ +on: + issues: + types: [opened, reopened] + +jobs: + greet: + runs-on: ubuntu-latest + name: Close issue opened by non-stargazer + steps: + - name: close + uses: uhyo/please-star-first@v2