From 07fb7d66fc7aed05e538ec6821882e4bf3d37de4 Mon Sep 17 00:00:00 2001 From: Takashi Masuda Date: Tue, 11 Aug 2026 19:52:23 +0900 Subject: [PATCH 1/2] chore: Assign the PR author to the PR on creation --- .github/workflows/add_assignee_to_pr.yml | 11 +++++++++++ 1 file changed, 11 insertions(+) create mode 100644 .github/workflows/add_assignee_to_pr.yml diff --git a/.github/workflows/add_assignee_to_pr.yml b/.github/workflows/add_assignee_to_pr.yml new file mode 100644 index 0000000..0e24d36 --- /dev/null +++ b/.github/workflows/add_assignee_to_pr.yml @@ -0,0 +1,11 @@ +name: Add assignee to PR + +on: + pull_request: + types: [opened] + +jobs: + add-assignee-to-pr: + uses: masutaka/actions/.github/workflows/add_assignee_to_pr.yml@main + permissions: + pull-requests: write From 6b84c28b541f245291a9199e3cab1e4db7507c62 Mon Sep 17 00:00:00 2001 From: Takashi Masuda Date: Tue, 11 Aug 2026 19:52:23 +0900 Subject: [PATCH 2/2] chore: Enable Dependabot version updates for GitHub Actions --- .github/dependabot.yml | 11 +++++++++++ 1 file changed, 11 insertions(+) create mode 100644 .github/dependabot.yml diff --git a/.github/dependabot.yml b/.github/dependabot.yml new file mode 100644 index 0000000..f0ec6c0 --- /dev/null +++ b/.github/dependabot.yml @@ -0,0 +1,11 @@ +# https://docs.github.com/code-security/dependabot/working-with-dependabot/dependabot-options-reference +version: 2 +updates: + - package-ecosystem: "github-actions" + directory: "/" + schedule: + interval: "monthly" + time: "19:00" + timezone: "Asia/Tokyo" + cooldown: + default-days: 7