Skip to content

WordPress SVN tag cleaner

Actions
Remove tags from your WordPress plugin SVN repository
1.0.0
Latest
Star (1)

WordPress SVN tag cleaner

This GitHub Action deletes a specified folder tag from your WordPress SVN plugin repository.

Configuration

Required secrets

  • SVN_USERNAME
  • SVN_PASSWORD

Set these secrets in the repository settings.

Required inputs

  • Tag to remove (tag-to-remove): please require this input in your workflow

Optional environment variables

  • SLUG: the WordPress repository slug. It defaults to the GitHub repository name

Example workflow

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

WordPress SVN tag cleaner is not certified by GitHub. It is provided by a third-party and is governed by separate terms of service, privacy policy, and support documentation.

About

Remove tags from your WordPress plugin SVN repository
1.0.0
Latest

WordPress SVN tag cleaner is not certified by GitHub. It is provided by a third-party and is governed by separate terms of service, privacy policy, and support documentation.