summaryrefslogtreecommitdiffstats
path: root/.github
diff options
context:
space:
mode:
authorAustin S. Hemmelgarn <austin@netdata.cloud>2023-01-16 11:06:27 -0500
committerGitHub <noreply@github.com>2023-01-16 11:06:27 -0500
commit147631bb8f17951a1eadf8ff8aeebd98442925d0 (patch)
tree997924a84020d7d7bd56fe6dcd1e2e528988dd1e /.github
parentc8ddde8df2416282fc3514d7a69b82f14be1a69e (diff)
Fix conditional in matrix generation for packaging jobs. (#14274)
This will bring us back to running only native packaging jobs on most PRs instead of running all packaging jobs on all PRs.
Diffstat (limited to '.github')
-rwxr-xr-x.github/scripts/gen-matrix-packaging.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/.github/scripts/gen-matrix-packaging.py b/.github/scripts/gen-matrix-packaging.py
index e58dd736fe..01e9ec7909 100755
--- a/.github/scripts/gen-matrix-packaging.py
+++ b/.github/scripts/gen-matrix-packaging.py
@@ -14,7 +14,7 @@ run_limited = False
with open('.github/data/distros.yml') as f:
data = yaml.load(f)
-if "${{ github.event_name }}" == "pull_request" and bool(int(SHORT_RUN)):
+if bool(int(SHORT_RUN)):
run_limited = True
for i, v in enumerate(data['include']):