Skip to content

Commit

Permalink
add github workflow for clean-ci
Browse files Browse the repository at this point in the history
Signed-off-by: Patrick Donnelly <[email protected]>
  • Loading branch information
Patrick Donnelly committed Feb 11, 2025
1 parent bd4ac4c commit 6031a5b
Showing 1 changed file with 23 additions and 0 deletions.
23 changes: 23 additions & 0 deletions .github/workflows/clean-ci.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
name: Cleanup ceph-ci.git
run-name: ${{ github.actor }} cleaning up ceph-ci.git branches
on:
- push
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 --repo=origin --ceph-ci=https://github.com/ceph/ceph-ci.git
working-directory: ./ceph-ci

0 comments on commit 6031a5b

Please sign in to comment.