-
Notifications
You must be signed in to change notification settings - Fork 53
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Signed-off-by: Patrick Donnelly <[email protected]>
- Loading branch information
Patrick Donnelly
committed
Feb 11, 2025
1 parent
bd4ac4c
commit 78b8fe6
Showing
1 changed file
with
25 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,25 @@ | ||
name: Cleanup ceph-ci.git | ||
run-name: ${{ github.actor }} cleaning up ceph-ci.git branches | ||
on: | ||
schedule: | ||
- cron: '0 0 * * *' | ||
workflow_dispatch: # allow manual triggering | ||
jobs: | ||
Clean-CI: | ||
runs-on: ubuntu-latest | ||
steps: | ||
- name: checkout ceph-ci.git | ||
uses: actions/checkout@v4 | ||
with: | ||
path: ceph-ci | ||
|
||
- name: checkout ceph.git | ||
uses: actions/checkout@v4 | ||
with: | ||
repository: ceph/ceph.git | ||
path: ceph-ci/ceph | ||
ref: clean-ci-2 | ||
|
||
- name: run clean-ci | ||
run: ./ceph/src/script/clean-ci --remote=origin | ||
working-directory: ./ceph-ci |