{"id":25526545,"url":"https://github.com/thepieterdc/intellij-plugin-verifier-action","last_synced_at":"2025-04-11T05:24:48.237Z","repository":{"id":65162037,"uuid":"231637921","full_name":"thepieterdc/intellij-plugin-verifier-action","owner":"thepieterdc","description":"GitHub Action to verify IntelliJ plugin compatibility","archived":false,"fork":false,"pushed_at":"2023-07-11T12:22:44.000Z","size":14,"stargazers_count":28,"open_issues_count":3,"forks_count":6,"subscribers_count":3,"default_branch":"master","last_synced_at":"2025-04-04T22:48:14.365Z","etag":null,"topics":["actions","ci","github","intellij","plugin"],"latest_commit_sha":null,"homepage":"","language":"Shell","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"mit","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/thepieterdc.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":"2020-01-03T17:52:35.000Z","updated_at":"2025-03-31T09:34:56.000Z","dependencies_parsed_at":"2024-06-21T20:30:17.584Z","dependency_job_id":"1dc49b51-ed6c-4699-8358-311e4cd64c39","html_url":"https://github.com/thepieterdc/intellij-plugin-verifier-action","commit_stats":{"total_commits":12,"total_committers":4,"mean_commits":3.0,"dds":"0.41666666666666663","last_synced_commit":"49ba1cccbf12553b4974803c79d3b9b71817094d"},"previous_names":[],"tags_count":7,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/thepieterdc%2Fintellij-plugin-verifier-action","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/thepieterdc%2Fintellij-plugin-verifier-action/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/thepieterdc%2Fintellij-plugin-verifier-action/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/thepieterdc%2Fintellij-plugin-verifier-action/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/thepieterdc","download_url":"https://codeload.github.com/thepieterdc/intellij-plugin-verifier-action/tar.gz/refs/heads/master","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":248346758,"owners_count":21088514,"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","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":["actions","ci","github","intellij","plugin"],"created_at":"2025-02-19T21:45:46.713Z","updated_at":"2025-04-11T05:24:48.218Z","avatar_url":"https://github.com/thepieterdc.png","language":"Shell","funding_links":[],"categories":[],"sub_categories":[],"readme":"# IntelliJ Plugin Verifier GitHub Action\n\n[![GitHub Marketplace](https://img.shields.io/badge/Marketplace-v1.4.0-undefined.svg?logo=github\u0026logoColor=white\u0026style=flat)](https://github.com/marketplace/actions/intellij-plugin-verifier)\n\nUse GitHub Actions to verify the compatibility of your IntelliJ plugin against any version of IntelliJ IDEA.\n\n## Usage\n\nSimply add the action to your workflow-file and specify the path to your plugin, as well as the desired versions of IntelliJ IDEA to test, as shown in the example:\n\n```yaml\nsteps:\n- uses: actions/checkout@master\n- uses: thepieterdc/intellij-plugin-verifier-action@v1.4.0\n  with:\n    plugin: '/path/to/plugin.zip'\n    verifier_version: 1.301\n    versions: |\n      181.5684.4\n      2019.3.3\n```\n\n## Arguments\n\nThis action currently requires 2 arguments:\n\n| Input  | Description | Usage |\n| :---:     |     :---:   |    :---:   |\n| `plugin`  | The path to the `zip`-distribution of the plugin, generated by executing `./gradlew buildPlugin` | *Required* |\n| `versions`  | Releases of IntelliJ that should be used to validate against, formatted as a multi-line string as shown in the example. | *Required* |\n\nNote that you do not need to specify the full path (with e.g. the version number) to the zip-file, as illustrated in the example.\n\n## Example\nThe following example builds a plugin using Gradle, and validates it against IDEA builds `181.5684.4`, `2019.3.3` and the latest EAP version.\n\n```yaml\nname: Plugin compatibility\non: [push]\njobs:\n  run:\n    runs-on: ubuntu-latest\n    steps:\n    - uses: actions/checkout@master\n    - name: Setup Java\n      uses: actions/setup-java@v1\n      with:\n        java-version: 11.x.x\n    - name: Build the plugin using Gradle\n      run: ./gradlew buildPlugin\n    - uses: thepieterdc/intellij-plugin-verifier-action@v1.4.0\n      with:\n        plugin: '/home/runner/work/demo-plugin/demo-plugin/build/distributions/demo-plugin-*'\n        verifier_version: 1.301\n        versions: |\n          181.5684.4\n          2019.3.3\n          LATEST-EAP-SNAPSHOT\n```\n## Contributing\n\nContributions are always appreciated in the form of pull requests/issues.\n\n## License\n\nThe code in this project is released under the [MIT License](LICENSE).\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fthepieterdc%2Fintellij-plugin-verifier-action","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fthepieterdc%2Fintellij-plugin-verifier-action","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fthepieterdc%2Fintellij-plugin-verifier-action/lists"}