diff options
author | kumvijaya <kuvmijaya@gmail.com> | 2024-09-17 23:35:16 +0530 |
---|---|---|
committer | kumvijaya <kuvmijaya@gmail.com> | 2024-09-17 23:35:16 +0530 |
commit | 20bbf268139233edb47b96805c6054281ee16f7c (patch) | |
tree | d5e9850a6cfdf5988cc6ef87f6fbb52506ff00b4 /.github/workflows/auto-author-assign.yml | |
parent | 98e89550e9b33dc2b8c73c7a1d1f905aead5bf2d (diff) | |
download | vyatta-cfg-20bbf268139233edb47b96805c6054281ee16f7c.tar.gz vyatta-cfg-20bbf268139233edb47b96805c6054281ee16f7c.zip |
T6722: updated to use reusable workflows
Diffstat (limited to '.github/workflows/auto-author-assign.yml')
-rw-r--r-- | .github/workflows/auto-author-assign.yml | 21 |
1 files changed, 4 insertions, 17 deletions
diff --git a/.github/workflows/auto-author-assign.yml b/.github/workflows/auto-author-assign.yml index 1a7f8ef..61612cc 100644 --- a/.github/workflows/auto-author-assign.yml +++ b/.github/workflows/auto-author-assign.yml @@ -3,25 +3,12 @@ on: pull_request_target: types: [opened, reopened, ready_for_review, locked] + permissions: pull-requests: write + contents: read jobs: - # https://github.com/marketplace/actions/auto-author-assign assign-author: - runs-on: ubuntu-latest - steps: - - name: "Assign Author to PR" - uses: toshimaru/auto-author-assign@v1.6.2 - with: - repo-token: ${{ secrets.GITHUB_TOKEN }} - - # https://github.com/shufo/auto-assign-reviewer-by-files - assign_reviewer: - runs-on: ubuntu-latest - steps: - - name: Request review based on files changes and/or groups the author belongs to - uses: shufo/auto-assign-reviewer-by-files@v1.1.4 - with: - token: ${{ secrets.PR_ACTION_ASSIGN_REVIEWERS }} - config: .github/reviewers.yml + uses: vyos/.github/.github/workflows/assign-author.yml@current + secrets: inherit |