From d4cb647d8a50b2455e4c1308d460cd8c5fd1c34c Mon Sep 17 00:00:00 2001 From: ucan-lab <35098175+ucan-lab@users.noreply.github.com> Date: Fri, 5 Apr 2024 23:22:14 +0900 Subject: [PATCH] chore: assign author --- .github/workflows/assign-author.yaml | 15 +++++++++++++++ 1 file changed, 15 insertions(+) create mode 100644 .github/workflows/assign-author.yaml diff --git a/.github/workflows/assign-author.yaml b/.github/workflows/assign-author.yaml new file mode 100644 index 0000000..c788475 --- /dev/null +++ b/.github/workflows/assign-author.yaml @@ -0,0 +1,15 @@ +name: Assign Author +on: + issues: + types: [opened] + pull_request: + types: [opened] +jobs: + assign-author: + if: ${{ ! contains(fromJson('["renovate[bot]", "dependabot[bot]"]'), github.actor) }} + permissions: + issues: write + pull-requests: write + runs-on: ubuntu-latest + steps: + - uses: technote-space/assign-author@v1