├── .github └── workflows │ └── fast-forward.yml └── README.md /.github/workflows/fast-forward.yml: -------------------------------------------------------------------------------- 1 | name: Fast-Forward 2 | 3 | on: 4 | schedule: 5 | - cron: "0 * * * *" 6 | workflow_dispatch: 7 | 8 | jobs: 9 | fast-forward: 10 | name: Fast-Forward 11 | runs-on: ubuntu-latest 12 | steps: 13 | - uses: actions/checkout@v2 14 | with: 15 | ref: master 16 | - name: Fast-Forward 17 | run: | 18 | git remote add upstream git://repo.or.cz/kolibrios.git 19 | git pull --ff-only upstream master 20 | git push origin master 21 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # [KolibriOS](https://kolibrios.org) 2 | 3 | The [master branch of this repository](https://github.com/Harmon758/kolibrios/tree/master) is an unofficial mirror of KolibriOS at https://repo.or.cz/kolibrios.git (git://repo.or.cz/kolibrios.git), which is a read-only git mirror of http://websvn.kolibrios.org. 4 | The default GitHub-Action branch of this repository only contains this README and an hourly GitHub Action workflow that fast-forwards the master branch of this repository by pulling from the upstream master branch. 5 | --------------------------------------------------------------------------------