mirror of
https://github.com/MarlinFirmware/Marlin.git
synced 2024-12-03 09:17:58 +00:00
28 lines
453 B
YAML
28 lines
453 B
YAML
#
|
|
# update-base-configs.yml
|
|
# Generate new base config files if needed
|
|
#
|
|
|
|
name: Update Base Configs
|
|
|
|
on:
|
|
schedule:
|
|
- cron: '0 */6 * * *'
|
|
|
|
jobs:
|
|
bump_date:
|
|
name: Update Base Configs
|
|
if: github.repository == 'MarlinFirmware/Marlin'
|
|
|
|
runs-on: ubuntu-latest
|
|
|
|
steps:
|
|
|
|
- name: Checkout bugfix-2.1.x
|
|
uses: actions/checkout@v4
|
|
with:
|
|
ref: bugfix-2.1.x
|
|
|
|
- name: Update Base Configs
|
|
run: make base-configs
|