workflows/codeowners: Dry mode for now

Apparently it started requesting reviews from code owners already
because the DRY_MODE from the global env was overridden in the local job
declaration: https://github.com/NixOS/nixpkgs/pull/347354#event-14570645380
This commit is contained in:
Silvan Mosberger 2024-10-09 18:34:34 +02:00
parent 4f9b30c3ba
commit c1710f234c

View File

@ -15,11 +15,12 @@ on:
env: env:
# TODO: Once confirmed that this works by seeing that the action would request # TODO: Once confirmed that this works by seeing that the action would request
# reviews from the same people (or refuse for wrong base branches), # reviews from the same people (or refuse for wrong base branches),
# move all entries from CODEOWNERS to OWNERS and change this value here # move all entries from CODEOWNERS to OWNERS, remove these two lines and uncomment the ones below
# OWNERS_FILE: .github/OWNERS
OWNERS_FILE: .github/CODEOWNERS OWNERS_FILE: .github/CODEOWNERS
# Also remove this
DRY_MODE: 1 DRY_MODE: 1
# OWNERS_FILE: .github/OWNERS
# # Don't do anything on draft PRs
# DRY_MODE: ${{ github.event.pull_request.draft && '1' || '' }}
jobs: jobs:
# Check that code owners is valid # Check that code owners is valid
@ -84,5 +85,3 @@ jobs:
run: result/bin/request-reviews.sh ${{ github.repository }} ${{ github.event.number }} "$OWNERS_FILE" run: result/bin/request-reviews.sh ${{ github.repository }} ${{ github.event.number }} "$OWNERS_FILE"
env: env:
GH_TOKEN: ${{ steps.app-token.outputs.token }} GH_TOKEN: ${{ steps.app-token.outputs.token }}
# Don't do anything on draft PRs
DRY_MODE: ${{ github.event.pull_request.draft && '1' || '' }}