This GitHub Action deletes a specified folder tag from your WordPress SVN plugin repository.
SVN_USERNAME
SVN_PASSWORD
Set these secrets in the repository settings.
- Tag to remove (
tag-to-remove
): please require this input in your workflow
SLUG
: the WordPress repository slug. It defaults to the GitHub repository name
This example demonstrate a simple manual workflow
name: Remove old tags from SVN
on:
workflow_dispatch:
inputs:
tag-to-remove:
description: 'Tag to remove'
required: true
jobs:
remove-tag:
runs-on: ubuntu-latest
name: Remove the tag
steps:
- uses: dottxado/[email protected]
with:
tag-to-remove: ${{ github.event.inputs.tag-to-remove }}
env:
SVN_USERNAME: ${{ secrets.SVN_USERNAME }}
SVN_PASSWORD: ${{ secrets.SVN_PASSWORD }}