Testing github actions

This commit is contained in:
iFargle
2023-03-03 13:54:09 +09:00
parent 63a05ce25b
commit 9ee692df03

View File

@@ -0,0 +1,17 @@
name: Remove old package versions
on:
workflow_dispatch:
inputs:
package_name:
description: 'The name of the package to delete'
required: true
jobs:
remove-package-versions:
runs-on: ubuntu-latest
steps:
- name: purge packages
uses: dylanratcliffe/delete-untagged-containers@main
with:
package_name: ${{ github.event.inputs.package_name }}
token: ${{ secrets.GITHUB_TOKEN }}