mirror of
https://github.com/meshtastic/meshtastic.git
synced 2025-01-01 00:47:31 -08:00
20 lines
355 B
YAML
20 lines
355 B
YAML
|
name: Nightly
|
||
|
on:
|
||
|
schedule:
|
||
|
- cron: 0 8 * * 1-5
|
||
|
workflow_dispatch: {}
|
||
|
|
||
|
jobs:
|
||
|
trunk_check:
|
||
|
name: Trunk Check Upload
|
||
|
runs-on: ubuntu-latest
|
||
|
|
||
|
steps:
|
||
|
- name: Checkout
|
||
|
uses: actions/checkout@v3
|
||
|
|
||
|
- name: Trunk Check
|
||
|
uses: trunk-io/trunk-action@v1
|
||
|
with:
|
||
|
trunk-token: ${{ secrets.TRUNK_TOKEN }}
|