summaryrefslogtreecommitdiffstats
path: root/.github
diff options
context:
space:
mode:
authorAustin S. Hemmelgarn <austin@netdata.cloud>2022-06-30 13:09:36 +0300
committerGitHub <noreply@github.com>2022-06-30 06:09:36 -0400
commit8a67b955b493252c83b850671f5e499ab73fadeb (patch)
tree368662abfd644c555dab86369d2b63e51becd7e9 /.github
parent7be66eebb1ba6ec30a82d6998d2f2fc107a8d230 (diff)
Fix package build filtering on PRs. (#13267)
Diffstat (limited to '.github')
-rw-r--r--.github/workflows/packaging.yml2
1 files changed, 1 insertions, 1 deletions
diff --git a/.github/workflows/packaging.yml b/.github/workflows/packaging.yml
index f6cb5534f0..1ce8a69497 100644
--- a/.github/workflows/packaging.yml
+++ b/.github/workflows/packaging.yml
@@ -46,7 +46,7 @@ jobs:
import json
import re
FULL_CI_REGEX = '/actions run full ci'
- ALWAYS_RUN_ARCHES = ["amd64"]
+ ALWAYS_RUN_ARCHES = ["amd64", "x86_64"]
PR_BODY = """${{ github.event.pull_request.body }}"""
yaml = YAML(typ='safe')
entries = list()