From 40e44262ceae77c35347e2cd853717033a2620ca Mon Sep 17 00:00:00 2001 From: Viacheslav Kudinov Date: Fri, 31 Oct 2025 23:28:57 +0100 Subject: [PATCH] Disable to run "Issue/PR response" workflow on forks Signed-off-by: Viacheslav Kudinov --- .github/workflows/immediate-response.yml | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/.github/workflows/immediate-response.yml b/.github/workflows/immediate-response.yml index b0cb50f084..938bdd5598 100644 --- a/.github/workflows/immediate-response.yml +++ b/.github/workflows/immediate-response.yml @@ -11,7 +11,9 @@ on: - opened jobs: respond-to-issue: - if: ${{ github.actor != 'dependabot[bot]' && github.actor != 'renovate[bot]' && github.actor != 'githubactions[bot]' && github.actor != 'octokitbot' }} + if: ${{ github.actor != 'dependabot[bot]' && github.actor != 'renovate[bot]' && + github.actor != 'githubactions[bot]' && github.actor != 'octokitbot' && + github.repository == 'integrations/terraform-provider-github' }} runs-on: ubuntu-latest steps: - name: Determine issue or PR number