We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent dd07a7b commit 9dc5838Copy full SHA for 9dc5838
.github/workflows/u-boot.yml
@@ -1,6 +1,9 @@
1
name: Build U-Boot for RB1
2
3
on:
4
+ # run weekly on Monday at 8:30am
5
+ schedule:
6
+ - cron: '30 8 * * 1'
7
# allow manual runs
8
workflow_dispatch:
9
@@ -23,6 +26,8 @@ concurrency:
23
26
24
27
jobs:
25
28
build-u-boot-rb1:
29
+ # don't run cron from forks of the main repository or from other branches
30
+ if: github.repository == 'qualcomm-linux/qcom-deb-images' && github.ref == 'refs/heads/main'
31
# for cross-builds
32
runs-on: [self-hosted, qcom-u2404, amd64]
33
# alternative for native builds, but overkill to do both
0 commit comments