mirror of
https://github.com/sotam0316/docker-py-revanced.git
synced 2026-04-25 03:48:37 +09:00
👷 Updated Regex for cleanup
This commit is contained in:
@@ -89,11 +89,6 @@ jobs:
|
|||||||
name: GitHub Cleanup
|
name: GitHub Cleanup
|
||||||
if: ${{ inputs.CLEANUP }}
|
if: ${{ inputs.CLEANUP }}
|
||||||
needs: [ upload-to-telegram ]
|
needs: [ upload-to-telegram ]
|
||||||
runs-on: ubuntu-latest
|
uses: ./.github/workflows/github-cleanup.yml
|
||||||
timeout-minutes: 5
|
secrets:
|
||||||
steps:
|
GH_TOKEN: ${{ secrets.GH_TOKEN }}
|
||||||
- name: Delete Older Releases
|
|
||||||
uses: nikhilbadyal/ghaction-rm-releases@v0.0.2
|
|
||||||
with:
|
|
||||||
GITHUB_TOKEN: ${{ secrets.GH_TOKEN }}
|
|
||||||
RELEASE_PATTERN: '*'
|
|
||||||
|
|||||||
@@ -0,0 +1,20 @@
|
|||||||
|
name: GitHub Cleanup
|
||||||
|
|
||||||
|
on:
|
||||||
|
workflow_dispatch:
|
||||||
|
workflow_call:
|
||||||
|
secrets:
|
||||||
|
GH_TOKEN:
|
||||||
|
required: true
|
||||||
|
|
||||||
|
jobs:
|
||||||
|
github-cleanup:
|
||||||
|
name: GitHub Cleanup
|
||||||
|
timeout-minutes: 5
|
||||||
|
runs-on: ubuntu-latest
|
||||||
|
steps:
|
||||||
|
- name: Delete Older Releases
|
||||||
|
uses: nikhilbadyal/ghaction-rm-releases@v0.0.2
|
||||||
|
with:
|
||||||
|
GITHUB_TOKEN: ${{ secrets.GH_TOKEN }}
|
||||||
|
RELEASE_PATTERN: '[\s\S]*'
|
||||||
Reference in New Issue
Block a user