IT2024. 9. 6. 17:24github actions로 PR 랜덤 리뷰어 지정하기
gibhut actions 스크립트아래 yaml 파일은 리뷰어를 설정하는 github actions 스크립트입니다.name: "Random reviwer"on: pull_request: types: - opened branches: - devjobs: random-reviwer: runs-on: ubuntu-latest steps: - id: random_reviwer uses: actions/github-script@v3 with: github-token: ${{ secrets.GITHUB_TOKEN }} script: | const me = '${{ github.event...