Created
November 16, 2023 11:05
-
-
Save sunnamed434/72c600bd744723ace42bcfd96da880fb to your computer and use it in GitHub Desktop.
Delets all old releases
This file contains hidden or 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
name: 'Delete old Releases' | |
on: push | |
jobs: | |
cleanup: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Remove old Releases | |
uses: dev-drprasad/delete-older-releases@master | |
with: | |
keep_latest: 28 | |
delete_tags: true | |
env: | |
GITHUB_TOKEN: ${{ secrets.PAT }} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment