Create test workflow for update plugin

This commit is contained in:
AngrySoundTech
2023-10-27 11:02:47 -04:00
parent b470dd13af
commit b4aee63fbe

View File

@@ -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 }}