mirror of
https://github.com/saltstack/salt.git
synced 2025-04-17 10:10:20 +00:00
16 lines
408 B
Django/Jinja
16 lines
408 B
Django/Jinja
<%- extends 'ci.yml.j2' %>
|
|
|
|
<%- block on %>
|
|
|
|
on:
|
|
schedule:
|
|
# https://docs.github.com/en/actions/using-workflows/workflow-syntax-for-github-actions#onschedule
|
|
- cron: '0 */8 * * *' # Run every 8 hours
|
|
<%- endblock %>
|
|
|
|
<%- block concurrency %>
|
|
|
|
concurrency:
|
|
group: ${{ github.workflow }}-${{ github.event_name }}-${{ github.head_ref || github.run_id }}
|
|
cancel-in-progress: false
|
|
<%- endblock %>
|