diff --git a/containers/.github/workflows/update-plugin.yml b/containers/.github/workflows/update-plugin.yml new file mode 100644 index 000000000..0bf6e9ede --- /dev/null +++ b/containers/.github/workflows/update-plugin.yml @@ -0,0 +1,17 @@ +name: 'Update Plugin' + +on: + workflow_dispatch: + inputs: + plugin: + description: The plugin from this organization to update + required: true + type: string + +jobs: + update_plugin: + runs-on: ubuntu-latest + + steps: + - name: List Releases + run: gh release list -R ${{ github.repository_owner }}/${{ inputs.plugin }} \ No newline at end of file