From 4c6f1341e0ceaad2603141f0a3f666bcf52fbc69 Mon Sep 17 00:00:00 2001 From: Tate Date: Thu, 2 May 2024 10:04:33 -0600 Subject: [PATCH] Fix CI-Scripts workflow to only run on pull_request (#13083) It was attempting to do this but also had push running which can mess up r --- .github/workflows/ci-scripts.yml | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/.github/workflows/ci-scripts.yml b/.github/workflows/ci-scripts.yml index 814c354cfe6..536973fc998 100644 --- a/.github/workflows/ci-scripts.yml +++ b/.github/workflows/ci-scripts.yml @@ -1,12 +1,11 @@ name: CI Scripts on: - push: + merge_group: pull_request: jobs: lint-scripts: - if: ${{ github.event_name == 'pull_request' }} runs-on: ubuntu-latest steps: - uses: actions/checkout@9bb56186c3b09b4f86b1c65136769dd318469633 # v4.1.2 @@ -23,7 +22,6 @@ jobs: gc-org-id: ${{ secrets.GRAFANA_INTERNAL_TENANT_ID }} test-scripts: - if: ${{ github.event_name == 'pull_request' }} runs-on: ubuntu-latest steps: - uses: actions/checkout@9bb56186c3b09b4f86b1c65136769dd318469633 # v4.1.2