From 5b7c204f8bb1ea16bf5ea3a4f67e9e63ac236c05 Mon Sep 17 00:00:00 2001 From: Mike Letellier Date: Thu, 27 Aug 2026 09:51:43 -0300 Subject: [PATCH 1/4] Install svn in readme workflow --- .github/workflows/push-asset-readme-update.yml | 15 +++++++++------ 1 file changed, 9 insertions(+), 6 deletions(-) diff --git a/.github/workflows/push-asset-readme-update.yml b/.github/workflows/push-asset-readme-update.yml index 195f372c17..04d83402b2 100644 --- a/.github/workflows/push-asset-readme-update.yml +++ b/.github/workflows/push-asset-readme-update.yml @@ -2,20 +2,23 @@ name: Plugin asset/readme update on: push: branches: - - master + - main jobs: - master: - name: Push to master + main: + name: Push to main runs-on: ubuntu-latest steps: - - uses: actions/checkout@master + - name: Install Subversion + run: sudo apt-get update && sudo apt-get install -y subversion + + - uses: actions/checkout@v4 - name: WordPress.org plugin asset/readme update uses: 10up/action-wordpress-plugin-asset-update@2.1.3 env: SVN_PASSWORD: ${{ secrets.SVN_PASSWORD }} SVN_USERNAME: ${{ secrets.SVN_USERNAME }} - SLUG: formidable + SLUG: tasty-recipes-lite # GitHub main is ahead of SVN trunk between releases. Without this, the # action rsyncs the whole plugin, sees unreleased code / missing dist # files, and bails with "Other files have been modified". - IGNORE_OTHER_FILES: true + IGNORE_OTHER_FILES: true \ No newline at end of file From e901fc1fe203d62bd35fe74335572ef59d7eb982 Mon Sep 17 00:00:00 2001 From: Mike Letellier Date: Thu, 27 Aug 2026 09:52:32 -0300 Subject: [PATCH 2/4] Fix branch name --- .github/workflows/push-asset-readme-update.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/push-asset-readme-update.yml b/.github/workflows/push-asset-readme-update.yml index 04d83402b2..7a34a3410e 100644 --- a/.github/workflows/push-asset-readme-update.yml +++ b/.github/workflows/push-asset-readme-update.yml @@ -4,8 +4,8 @@ on: branches: - main jobs: - main: - name: Push to main + master: + name: Push to master runs-on: ubuntu-latest steps: - name: Install Subversion From 83a463c10bfba7e7a0a0d751cdc2af6d08986b16 Mon Sep 17 00:00:00 2001 From: Mike Letellier Date: Thu, 27 Aug 2026 09:52:56 -0300 Subject: [PATCH 3/4] Fix slug --- .github/workflows/push-asset-readme-update.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/push-asset-readme-update.yml b/.github/workflows/push-asset-readme-update.yml index 7a34a3410e..265d21371a 100644 --- a/.github/workflows/push-asset-readme-update.yml +++ b/.github/workflows/push-asset-readme-update.yml @@ -17,7 +17,7 @@ jobs: env: SVN_PASSWORD: ${{ secrets.SVN_PASSWORD }} SVN_USERNAME: ${{ secrets.SVN_USERNAME }} - SLUG: tasty-recipes-lite + SLUG: formidable # GitHub main is ahead of SVN trunk between releases. Without this, the # action rsyncs the whole plugin, sees unreleased code / missing dist # files, and bails with "Other files have been modified". From 297c0bd5e8b55421b4f763567dcc8db3dd23446b Mon Sep 17 00:00:00 2001 From: Mike Letellier Date: Thu, 27 Aug 2026 09:53:40 -0300 Subject: [PATCH 4/4] Fix branch name --- .github/workflows/push-asset-readme-update.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/push-asset-readme-update.yml b/.github/workflows/push-asset-readme-update.yml index 265d21371a..30f6770ac8 100644 --- a/.github/workflows/push-asset-readme-update.yml +++ b/.github/workflows/push-asset-readme-update.yml @@ -2,7 +2,7 @@ name: Plugin asset/readme update on: push: branches: - - main + - master jobs: master: name: Push to master