Skip to content

GitHub Actions to assign author to issue or PR

License

Notifications You must be signed in to change notification settings

sparkletown/assign-author

 
 

Repository files navigation

Assign Author

CI Status codecov CodeFactor License: MIT

Read this in other languages: English, 日本語.

GitHub Actions to assign author to issue or PR.

Table of Contents

Details

Screenshot

GitHub Action

Installation

  1. Setup workflow
    e.g. .github/workflows/pull_request.yml
    on:
      pull_request:
        types: [opened]
    name: Pull Request
    jobs:
      assignAuthor:
        name: Assign author to PR
        runs-on: ubuntu-latest
        steps:
          - name: Assign author to PR
            uses: technote-space/assign-author@v1
    e.g. .github/workflows/issues.yml
    on:
      issues:
        types: [opened]
    name: Issues
    jobs:
      assignAuthor:
        name: Assign author to issue
        runs-on: ubuntu-latest
        steps:
          - name: Assign author to issue
            uses: technote-space/assign-author@v1

Action event details

Target events

eventName action
pull_request, pull_request_target opened, reopened
issues opened, reopened

Example repositories using this Action

Author

GitHub (Technote)
Blog

About

GitHub Actions to assign author to issue or PR

Resources

License

Code of conduct

Stars

Watchers

Forks

Packages

No packages published

Languages

  • TypeScript 97.2%
  • JavaScript 2.8%