Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
11 changes: 9 additions & 2 deletions .github/workflows/transport.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,12 +4,19 @@ name: Transport Actuator

# Controls when the workflow will run
on:
# Allows you to run this workflow manually from the Actions tab
workflow_dispatch:

# Triggers the workflow every day
schedule:
- cron: "15 8,20 * * *" # every day at (UTC) 08:15 and 20:15

# Allows you to run this workflow manually from the Actions tab
workflow_dispatch:
# Triggers the workflow on push events but only for the "master" branch
pull_request_review:
branches: ["master"]

push:
branches: ["master"]

# A workflow run is made up of one or more jobs that can run sequentially or in parallel
jobs:
Expand Down