mirror of
https://github.com/basnijholt/adaptive-lighting.git
synced 2026-09-12 06:44:04 +02:00
22 lines
349 B
YAML
22 lines
349 B
YAML
name: Sync Main to Master
|
|
|
|
on:
|
|
push:
|
|
branches:
|
|
- main
|
|
|
|
jobs:
|
|
sync:
|
|
runs-on: ubuntu-latest
|
|
|
|
steps:
|
|
- name: Checkout repository
|
|
uses: actions/checkout@v2
|
|
with:
|
|
ref: main
|
|
fetch-depth: 0
|
|
|
|
- name: Push changes to master
|
|
run: |
|
|
git checkout -b master
|
|
git push origin +master
|