From c8fd72e92f2a38c44333b19f84331ff0844a5e7a Mon Sep 17 00:00:00 2001 From: milosjovanovic Date: Thu, 27 Aug 2026 13:49:21 +0200 Subject: [PATCH] chore: stop passing protected owners and drift reviewers to the reusable workflows Both values now come from the deployment environment the reusable workflows already run in -- PROTECTED_OWNERS from plan, DRIFT_REVIEWERS from schedule, both already set. The workflow_call inputs were removed upstream, so a caller that keeps passing them fails with Invalid input once test/rc-cycle picks up the change. Dropping them first is the safe order: the inputs were optional, so the currently referenced revision simply reads an empty value until the branch moves. --- .github/workflows/drift-check.yaml | 1 - .github/workflows/tf-plan.yaml | 1 - 2 files changed, 2 deletions(-) diff --git a/.github/workflows/drift-check.yaml b/.github/workflows/drift-check.yaml index b5fa02f..a7f0d38 100644 --- a/.github/workflows/drift-check.yaml +++ b/.github/workflows/drift-check.yaml @@ -14,4 +14,3 @@ jobs: with: gcss_ref: test/rc-cycle tfc_org: "GR-OSS" - reviewers: ${{ vars.DRIFT_REVIEWERS }} \ No newline at end of file diff --git a/.github/workflows/tf-plan.yaml b/.github/workflows/tf-plan.yaml index d83e7ce..ae87bec 100644 --- a/.github/workflows/tf-plan.yaml +++ b/.github/workflows/tf-plan.yaml @@ -13,7 +13,6 @@ jobs: commit_sha: ${{ github.event.workflow_run.head_sha }} gcss_ref: test/rc-cycle tfc_org: "GR-OSS" - protected_owners: ${{ vars.PROTECTED_OWNERS }} secrets: app_private_key: ${{ secrets.APP_PRIVATE_KEY }} gh_token: ${{ secrets.GITHUB_TOKEN }}