diff options
author | dundargoc <33953936+dundargoc@users.noreply.github.com> | 2023-04-16 14:16:19 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-04-16 14:16:19 +0200 |
commit | 55d346fc2683a18256320eaae75eb4f3137dcced (patch) | |
tree | 9553cf0b1e857e40de1357da06de9f51075990df | |
parent | 88c3d8900112b1798fa5084dd02de6a6fd06f365 (diff) | |
download | rneovim-55d346fc2683a18256320eaae75eb4f3137dcced.tar.gz rneovim-55d346fc2683a18256320eaae75eb4f3137dcced.tar.bz2 rneovim-55d346fc2683a18256320eaae75eb4f3137dcced.zip |
ci: remove unnecessary token usage
-rw-r--r-- | .github/workflows/labeler.yml | 2 | ||||
-rw-r--r-- | .github/workflows/lintcommit.yml | 2 |
2 files changed, 0 insertions, 4 deletions
diff --git a/.github/workflows/labeler.yml b/.github/workflows/labeler.yml index 60689029a3..7646bfa6eb 100644 --- a/.github/workflows/labeler.yml +++ b/.github/workflows/labeler.yml @@ -12,7 +12,6 @@ jobs: steps: - uses: actions/labeler@v4 with: - repo-token: "${{ secrets.GITHUB_TOKEN }}" sync-labels: "" type-scope: @@ -21,7 +20,6 @@ jobs: contents: write pull-requests: write env: - GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} GH_REPO: ${{ github.repository }} PR_NUMBER: ${{ github.event.pull_request.number }} PR_TITLE: ${{ github.event.pull_request.title }} diff --git a/.github/workflows/lintcommit.yml b/.github/workflows/lintcommit.yml index afedbe0b12..77c75fbd76 100644 --- a/.github/workflows/lintcommit.yml +++ b/.github/workflows/lintcommit.yml @@ -8,8 +8,6 @@ jobs: lint-commits: runs-on: ubuntu-latest if: github.event.pull_request.draft == false - env: - GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} steps: - uses: actions/checkout@v3 with: |