From 4afc752635ec78c87931a90354c9e50450072e2f Mon Sep 17 00:00:00 2001
From: DTTerastar
Date: Sun, 19 Apr 2026 16:24:16 -0400
Subject: [PATCH] ci: add auto-assign workflow for issues and PRs
Co-Authored-By: Claude Opus 4.7 (1M context)
---
.github/workflows/auto-assign.yml | 19 +++++++++++++++++++
1 file changed, 19 insertions(+)
create mode 100644 .github/workflows/auto-assign.yml
diff --git a/.github/workflows/auto-assign.yml b/.github/workflows/auto-assign.yml
new file mode 100644
index 0000000..c9351cf
--- /dev/null
+++ b/.github/workflows/auto-assign.yml
@@ -0,0 +1,19 @@
+name: Auto Assign
+on:
+ issues:
+ types: [opened]
+ pull_request:
+ types: [opened]
+jobs:
+ run:
+ runs-on: ubuntu-latest
+ permissions:
+ issues: write
+ pull-requests: write
+ steps:
+ - name: 'Auto-assign issue'
+ uses: pozil/auto-assign-issue@v1
+ with:
+ repo-token: ${{ secrets.GITHUB_TOKEN }}
+ assignees: DTTerastar
+ numOfAssignee: 1