├── .github └── workflows │ └── clean-ci.yml └── README.md /.github/workflows/clean-ci.yml: -------------------------------------------------------------------------------- 1 | name: Cleanup ceph-ci.git 2 | run-name: ${{ github.actor }} cleaning up ceph-ci.git branches 3 | on: 4 | schedule: 5 | - cron: '0 0 * * *' 6 | workflow_dispatch: # allow manual triggering 7 | jobs: 8 | Clean-CI: 9 | runs-on: ubuntu-latest 10 | steps: 11 | - name: checkout ceph-ci.git 12 | uses: actions/checkout@v4 13 | with: 14 | path: ceph-ci 15 | 16 | - name: checkout ceph.git 17 | uses: actions/checkout@v4 18 | with: 19 | repository: ceph/ceph.git 20 | path: ceph-ci/ceph 21 | ref: main 22 | 23 | - name: run clean-ci 24 | run: ./ceph/src/script/clean-ci --remote=origin 25 | working-directory: ./ceph-ci 26 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | This is continuous integration repository for Ceph. 2 | 3 | You are probably looking for: https://github.com/ceph/ceph.git 4 | --------------------------------------------------------------------------------