@cryptotaxi247 / netdata-1 / commits / 147631bb8

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.

Austin S. Hemmelgarn committed Jan 16, 2023 at 11:06 UTC 147631bb8f17951a1eadf8ff8aeebd98442925d0
1 file changed +1 -1
.github/scripts/gen-matrix-packaging.py
+1 -1
@@ -14,7 +14,7 @@ run_limited = False
14 with open('.github/data/distros.yml') as f:
15 data = yaml.load(f)
16
17 -if "${{ github.event_name }}" == "pull_request" and bool(int(SHORT_RUN)):
17 +if bool(int(SHORT_RUN)):
18 run_limited = True
19
20 for i, v in enumerate(data['include']):