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