diff --git a/.gitea/workflows/qa-review.yml b/.gitea/workflows/qa-review.yml index c9360706..5fc0f5bf 100644 --- a/.gitea/workflows/qa-review.yml +++ b/.gitea/workflows/qa-review.yml @@ -120,7 +120,7 @@ jobs: # no comment.user.login so the step is a no-op skip there. if: github.event_name == 'issue_comment' env: - GITEA_TOKEN: ${{ secrets.RFC_324_TEAM_READ_TOKEN || secrets.GITHUB_TOKEN }} + GITEA_TOKEN: ${{ secrets.SOP_TIER_CHECK_TOKEN || secrets.GITHUB_TOKEN }} run: | set -euo pipefail login="${{ github.event.comment.user.login }}" @@ -151,7 +151,7 @@ jobs: - name: Evaluate qa-review env: - GITEA_TOKEN: ${{ secrets.RFC_324_TEAM_READ_TOKEN || secrets.GITHUB_TOKEN }} + GITEA_TOKEN: ${{ secrets.SOP_TIER_CHECK_TOKEN || secrets.GITHUB_TOKEN }} GITEA_HOST: git.moleculesai.app REPO: ${{ github.repository }} # PR number lives in different places per event: diff --git a/.gitea/workflows/security-review.yml b/.gitea/workflows/security-review.yml index 6e5a1844..3013fe8a 100644 --- a/.gitea/workflows/security-review.yml +++ b/.gitea/workflows/security-review.yml @@ -37,7 +37,7 @@ jobs: # so re-running on a non-collaborator comment is harmless. if: github.event_name == 'issue_comment' env: - GITEA_TOKEN: ${{ secrets.RFC_324_TEAM_READ_TOKEN || secrets.GITHUB_TOKEN }} + GITEA_TOKEN: ${{ secrets.SOP_TIER_CHECK_TOKEN || secrets.GITHUB_TOKEN }} run: | set -euo pipefail login="${{ github.event.comment.user.login }}" @@ -62,7 +62,7 @@ jobs: - name: Evaluate security-review env: - GITEA_TOKEN: ${{ secrets.RFC_324_TEAM_READ_TOKEN || secrets.GITHUB_TOKEN }} + GITEA_TOKEN: ${{ secrets.SOP_TIER_CHECK_TOKEN || secrets.GITHUB_TOKEN }} GITEA_HOST: git.moleculesai.app REPO: ${{ github.repository }} PR_NUMBER: ${{ github.event.pull_request.number || github.event.issue.number }}