Simple email application for Android. Original source code: https://framagit.org/dystopia-project/simple-email
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

64 lines
5.2 KiB

  1. # Plugins list
  2. ## Official plugins
  3. - [@semantic-release/commit-analyzer](https://github.com/semantic-release/commit-analyzer)
  4. - `analyzeCommits`: Determine the type of release by analyzing commits with [conventional-changelog](https://github.com/conventional-changelog/conventional-changelog)
  5. - [@semantic-release/release-notes-generator](https://github.com/semantic-release/release-notes-generator)
  6. - `generateNotes`: Generate release notes for the commits added since the last release with [conventional-changelog](https://github.com/conventional-changelog/conventional-changelog)
  7. - [@semantic-release/github](https://github.com/semantic-release/github)
  8. - `verifyConditions`: Verify the presence and the validity of the GitHub authentication and release configuration
  9. - `publish`: Publish a [GitHub release](https://help.github.com/articles/about-releases)
  10. - `success`: Add a comment to GitHub issues and pull requests resolved in the release
  11. - `fail`: Open a GitHub issue when a release fails
  12. - [@semantic-release/npm](https://github.com/semantic-release/npm)
  13. - `verifyConditions`: Verify the presence and the validity of the npm authentication and release configuration
  14. - `prepare`: Update the package.json version and create the npm package tarball
  15. - `publish`: Publish the package on the npm registry
  16. - [@semantic-release/gitlab](https://github.com/semantic-release/gitlab)
  17. - `verifyConditions`: Verify the presence and the validity of the GitLab authentication and release configuration
  18. - `publish`: Publish a [GitLab release](https://docs.gitlab.com/ce/workflow/releases.html)
  19. - [@semantic-release/git](https://github.com/semantic-release/git)
  20. - `verifyConditions`: Verify the presence and the validity of the Git authentication and release configuration
  21. - `prepare`: Push a release commit and tag, including configurable files
  22. - [@semantic-release/changelog](https://github.com/semantic-release/changelog)
  23. - `verifyConditions`: Verify the presence and the validity of the configuration
  24. - `prepare`: Create or update the changelog file in the local project repository
  25. - [@semantic-release/exec](https://github.com/semantic-release/exec)
  26. - `verifyConditions`: Execute a shell command to verify if the release should happen
  27. - `analyzeCommits`: Execute a shell command to determine the type of release
  28. - `verifyRelease`: Execute a shell command to verifying a release that was determined before and is about to be published.
  29. - `generateNotes`: Execute a shell command to generate the release note
  30. - `prepare`: Execute a shell command to prepare the release
  31. - `publish`: Execute a shell command to publish the release
  32. - `success`: Execute a shell command to notify of a new release
  33. - `fail`: Execute a shell command to notify of a failed release
  34. ## Community plugins
  35. [Open a Pull Request](https://github.com/semantic-release/semantic-release/blob/caribou/CONTRIBUTING.md#submitting-a-pull-request) to add your plugin to the list.
  36. - [semantic-release-docker](https://github.com/felixfbecker/semantic-release-docker)
  37. - `verifyConditions`: Verify that all needed configuration is present and login to the Docker registry.
  38. - `publish`: Tag the image specified by `name` with the new version, push it to Docker Hub and update the latest tag.
  39. - [semantic-release-gcr](https://github.com/carlos-cubas/semantic-release-gcr)
  40. - `verifyConditions`: Verify that all needed configuration is present and login to the Docker registry.
  41. - `publish`: Tag the image specified by `name` with the new version, push it to Docker Hub and update the latest tag.
  42. - [semantic-release-vsce](https://github.com/raix/semantic-release-vsce)
  43. - `verifyConditions`: Verify the presence and the validity of the vsce authentication and release configuration
  44. - `prepare`: Create a `.vsix` for distribution
  45. - `publish`: Publish the package to the Visual Studio Code marketplace
  46. - [semantic-release-verify-deps](https://github.com/piercus/semantic-release-verify-deps)
  47. - `verifyConditions`: Check the dependencies format against a regexp before a release
  48. - [semantic-release-chrome](https://github.com/GabrielDuarteM/semantic-release-chrome)
  49. - `verifyConditions`: Verify the presence of the authentication (set via environment variables)
  50. - `prepare`: Write the correct version to the manifest.json and creates a zip file of the whole dist folder
  51. - `publish`: Uploads the generated zip file to the webstore, and publish the item
  52. - [semantic-release-firefox](https://github.com/felixfbecker/semantic-release-firefox)
  53. - `verifyConditions`: Verify the presence of the authentication (set via environment variables)
  54. - `prepare`: Write the correct version to the manifest.json, creates a xpi file of the dist folder and a zip of the sources
  55. - `publish`: Submit the generated archives to the webstore for review, and publish the item including release notes
  56. - [semantic-release-gerrit](https://github.com/pascalMN/semantic-release-gerrit)
  57. - `generateNotes`: Generate release notes with Gerrit reviews URL
  58. - [semantic-release-expo](https://github.com/bycedric/semantic-release-expo)
  59. - `verifyConditions`: Verify Expo manifest(s) are readable and valid.
  60. - `prepare`: Update version, ios build number and android version code in the Expo manifest(s).