.github/workflows/container-housekeeping.yml #89
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
on: | |
schedule: | |
- cron: '0 1 * * 0' | |
workflow_dispatch: | |
jobs: | |
house-keeping: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Keep R12 production to 5 | |
uses: actions/[email protected] | |
with: | |
package-name: 'projectkeep-r12' | |
package-type: 'container' | |
min-versions-to-keep: 5 | |
token: ${{ secrets.NUKE_TOKEN }} | |
- name: Keep R14 production to 5 | |
uses: actions/[email protected] | |
with: | |
package-name: 'projectkeep-r14' | |
package-type: 'container' | |
min-versions-to-keep: 5 | |
token: ${{ secrets.NUKE_TOKEN }} |