diff options
author | Chongyi Zheng <git@zcy.dev> | 2024-04-28 01:47:48 -0400 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-04-28 05:47:48 +0000 |
commit | 9a0b449c4f428422b62c658ec1f6d2875ff41151 (patch) | |
tree | e8236105708ae27f0b9772cbb1073be5a1abad1e | |
parent | b2013be9105bdbfa1e5926a6da13eac347df25e2 (diff) | |
download | gitea-9a0b449c4f428422b62c658ec1f6d2875ff41151.tar.gz gitea-9a0b449c4f428422b62c658ec1f6d2875ff41151.zip |
Remove disk-clean workflow (#30741)
The jobs in the workflow runs in parallel. The `disk-clean` job actually
does nothing, i.e. it will not clean the disk for `nightly-binary`,
`nightly-docker-rootful`, `nightly-docker-rootless`
-rw-r--r-- | .github/workflows/disk-clean.yml | 25 | ||||
-rw-r--r-- | .github/workflows/release-nightly.yml | 2 |
2 files changed, 0 insertions, 27 deletions
diff --git a/.github/workflows/disk-clean.yml b/.github/workflows/disk-clean.yml deleted file mode 100644 index 8abe8891c7..0000000000 --- a/.github/workflows/disk-clean.yml +++ /dev/null @@ -1,25 +0,0 @@ -name: disk-clean - -on: - workflow_call: - -jobs: - triage: - runs-on: ubuntu-latest - steps: - - uses: actions/checkout@v4 - - name: Free Disk Space (Ubuntu) - uses: jlumbroso/free-disk-space@main - with: - # this might remove tools that are actually needed, - # if set to "true" but frees about 6 GB - tool-cache: false - - # all of these default to true, but feel free to set to - # "false" if necessary for your workflow - android: true - dotnet: true - haskell: true - large-packages: false - docker-images: false - swap-storage: true diff --git a/.github/workflows/release-nightly.yml b/.github/workflows/release-nightly.yml index 990f3c8e07..fbaa27102c 100644 --- a/.github/workflows/release-nightly.yml +++ b/.github/workflows/release-nightly.yml @@ -9,8 +9,6 @@ concurrency: cancel-in-progress: true jobs: - disk-clean: - uses: ./.github/workflows/disk-clean.yml nightly-binary: runs-on: nscloud steps: |