diff options
author | Christian Poessinger <christian@poessinger.com> | 2021-06-09 19:21:02 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-06-09 19:21:02 +0200 |
commit | 5d068442cf7b1863724c83168176ce2940a023fe (patch) | |
tree | a1a46571f5ca1630fddc5f4155b79868891f548d | |
parent | 4614d78ac2a0d0daa85d3c873f35c1a9dfdbc984 (diff) | |
download | vyos-1x-5d068442cf7b1863724c83168176ce2940a023fe.tar.gz vyos-1x-5d068442cf7b1863724c83168176ce2940a023fe.zip |
GitHub: fix workflow token warning
-rw-r--r-- | .github/workflows/auto-author-assign.yml | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/.github/workflows/auto-author-assign.yml b/.github/workflows/auto-author-assign.yml index 947593fc1..81134206b 100644 --- a/.github/workflows/auto-author-assign.yml +++ b/.github/workflows/auto-author-assign.yml @@ -7,14 +7,16 @@ permissions: pull-requests: write 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.3.5 with: - token: ${{ secrets.GITHUB_TOKEN }} + repo-token: ${{ secrets.GITHUB_TOKEN }} + # https://github.com/shufo/auto-assign-reviewer-by-files assign_reviewer: runs-on: ubuntu-latest steps: |