Commit ac3229a435

Alex Rønne Petersen <alex@alexrp.com>
2025-08-08 17:05:20
Revert "ci: run riscv64-linux jobs if ci-riscv64-linux label is applied"
This reverts commit 8101104db0bdc7edeb07d91ab758c8a8d0861061.
1 parent 8101104
Changed files (1)
.github
workflows
.github/workflows/ci.yaml
@@ -1,11 +1,6 @@
 name: ci
 on:
   pull_request:
-    types:
-      - labeled
-      - opened
-      - reopened
-      - synchronize
   push:
     branches:
       - master
@@ -56,7 +51,7 @@ jobs:
       - name: Build and Test
         run: sh ci/aarch64-linux-release.sh
   riscv64-linux-debug:
-    if: github.event_name == 'push' || contains(github.event.pull_request.labels.*.name, 'ci-riscv64-linux')
+    if: github.event_name == 'push'
     timeout-minutes: 420
     runs-on: [self-hosted, Linux, riscv64]
     steps:
@@ -65,7 +60,7 @@ jobs:
       - name: Build and Test
         run: sh ci/riscv64-linux-debug.sh
   riscv64-linux-release:
-    if: github.event_name == 'push' || contains(github.event.pull_request.labels.*.name, 'ci-riscv64-linux')
+    if: github.event_name == 'push'
     timeout-minutes: 420
     runs-on: [self-hosted, Linux, riscv64]
     steps: