1
0
mirror of https://github.com/trezor/trezor-firmware.git synced 2025-01-17 10:51:00 +00:00

ci: run common.yml and prebuild.yml nightly

This commit is contained in:
Martin Milata 2024-05-09 15:21:46 +02:00
parent d04ecba815
commit 5ef428ef55
2 changed files with 11 additions and 3 deletions

View File

@ -1,6 +1,10 @@
name: Common
on: [pull_request]
on:
pull_request:
workflow_dispatch:
schedule:
- cron: '14 23 * * *' # every day @ 23:14
jobs:
crypto_build:

View File

@ -1,6 +1,10 @@
name: "Prebuild checks"
on: [pull_request]
on:
pull_request:
workflow_dispatch:
schedule:
- cron: '13 23 * * *' # every day @ 23:13
jobs:
block-fixup:
@ -54,7 +58,7 @@ jobs:
# or contain `[no changelog]` in the commit message.
changelog_check:
name: Changelog check
if: ${{ github.ref != 'main' }}
if: ${{ github.ref != 'main' && github.event_name == 'pull_request' }}
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4