{"id":14954948,"url":"https://github.com/pronamic/action-wordpress-org-plugin-readme-deploy","last_synced_at":"2025-08-17T10:08:49.295Z","repository":{"id":230222274,"uuid":"778802524","full_name":"pronamic/action-wordpress-org-plugin-readme-deploy","owner":"pronamic","description":"Deploy your WordPress plugin readme.txt file in the WordPress.org plugin directory with this GitHub action.","archived":false,"fork":false,"pushed_at":"2025-05-20T19:30:17.000Z","size":51,"stargazers_count":3,"open_issues_count":0,"forks_count":0,"subscribers_count":3,"default_branch":"main","last_synced_at":"2025-05-20T21:14:14.116Z","etag":null,"topics":["deploy","deployment","github","github-actions","php","pronamic","readme","release","release-automation","subversion","svn","wordpress","wordpress-development","wordpress-directory","wordpress-org","wordpress-plugin"],"latest_commit_sha":null,"homepage":"","language":"PHP","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"gpl-2.0","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/pronamic.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null}},"created_at":"2024-03-28T12:41:24.000Z","updated_at":"2025-05-20T19:30:21.000Z","dependencies_parsed_at":"2024-09-29T06:17:28.907Z","dependency_job_id":null,"html_url":"https://github.com/pronamic/action-wordpress-org-plugin-readme-deploy","commit_stats":{"total_commits":35,"total_committers":1,"mean_commits":35.0,"dds":0.0,"last_synced_commit":"e4a55c72e9869ebfe34b9a97828ef54aea5d1dc1"},"previous_names":["pronamic/action-wordpress-plugin-readme-update"],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/pronamic/action-wordpress-org-plugin-readme-deploy","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/pronamic%2Faction-wordpress-org-plugin-readme-deploy","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/pronamic%2Faction-wordpress-org-plugin-readme-deploy/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/pronamic%2Faction-wordpress-org-plugin-readme-deploy/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/pronamic%2Faction-wordpress-org-plugin-readme-deploy/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/pronamic","download_url":"https://codeload.github.com/pronamic/action-wordpress-org-plugin-readme-deploy/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/pronamic%2Faction-wordpress-org-plugin-readme-deploy/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":270832722,"owners_count":24653605,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","status":"online","status_checked_at":"2025-08-17T02:00:09.016Z","response_time":129,"last_error":null,"robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":true,"can_crawl_api":true,"host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["deploy","deployment","github","github-actions","php","pronamic","readme","release","release-automation","subversion","svn","wordpress","wordpress-development","wordpress-directory","wordpress-org","wordpress-plugin"],"created_at":"2024-09-24T13:10:16.904Z","updated_at":"2025-08-17T10:08:49.268Z","avatar_url":"https://github.com/pronamic.png","language":"PHP","funding_links":[],"categories":[],"sub_categories":[],"readme":"# Github action WordPress.org `readme.txt` deploy\n\nWith this GitHub action you can easily deploy your WordPress plugin `readme.txt` file in the WordPress plugin directory.\n\n## Introduction\n\n### Streamline your WordPress plugin deployment\n\nThis GitHub action simplifies deploying your WordPress plugin's `readme.txt` file directly in the WordPress plugin directory.\n\n### Built for WordPress developers\n\nLeveraging PHP instead of bash scripting, this action caters to the preferences of many WordPress developers, offering a familiar and potentially more convenient workflow.\n\n## Example\n\n```yml\nname: Deploy readme.txt to WordPress.org\n\non:\n  workflow_dispatch:\n\njobs:\n  deploy:\n    runs-on: ubuntu-latest\n\n    environment:\n      name: WordPress.org plugin directory\n      url: https://wordpress.org/plugins/pronamic-pay-with-mollie-for-contact-form-7/\n\n    steps:\n      - name: Checkout\n        uses: actions/checkout@v4\n        with:\n          sparse-checkout: |\n            .github\n            .wordpress-org\n            readme.txt\n\n      - name: Deploy\n        uses: pronamic/action-wordpress-plugin-readme-update@main\n        with:\n          username: pronamic\n          password: ${{ secrets.SVN_PASSWORD }}\n          slug: pronamic-pay-with-mollie-for-contact-form-7\n```\n\n## Inspiration\n\n- https://github.com/marketplace/actions/wordpress-plugin-svn-deploy\n  - https://github.com/nk-o/action-wordpress-plugin-deploy\n- https://github.com/marketplace/actions/wordpress-plugin-readme-assets-update\n  - https://github.com/10up/action-wordpress-plugin-asset-update\n- https://github.com/marketplace/actions/deploy-to-wordpress-org-svn-repository\n  - https://github.com/richard-muvirimi/deploy-wordpress-plugin\n\n## Development\n\n```\nSVN_USERNAME=test SVN_PASSWORD=test WP_SLUG=salesfeed php deploy.php\n```\n\n## Links\n\n- https://developer.wordpress.org/plugins/wordpress-org/how-your-readme-txt-works/\n- https://developer.wordpress.org/plugins/wordpress-org/how-to-use-subversion/\n- https://svnbook.red-bean.com/\n- https://docs.github.com/en/actions/creating-actions/metadata-syntax-for-github-actions\n\n[![Pronamic - Work with us](https://github.com/pronamic/brand-resources/blob/main/banners/pronamic-work-with-us-leaderboard-728x90%404x.png)](https://www.pronamic.eu/contact/)\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fpronamic%2Faction-wordpress-org-plugin-readme-deploy","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fpronamic%2Faction-wordpress-org-plugin-readme-deploy","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fpronamic%2Faction-wordpress-org-plugin-readme-deploy/lists"}