GitHub Actions - template cleanup workflow

This commit is contained in:
Jakub Chrzanowski
2020-06-17 21:06:57 +02:00
parent 9cd83d4719
commit e4a1106495
14 changed files with 168 additions and 22 deletions

7
.github/template-cleanup/CHANGELOG.md vendored Normal file
View File

@@ -0,0 +1,7 @@
<!-- Keep a Changelog guide -> https://keepachangelog.com -->
# %NAME% Changelog
## [Unreleased]
### Added
- Initial scaffold created from [IntelliJ Plugin Template](https://github.com/JetBrains/intellij-plugin-template)

28
.github/template-cleanup/README.md vendored Normal file
View File

@@ -0,0 +1,28 @@
# %NAME%
![Build](https://github.com/hsz/intellij-plugin-template/workflows/Build/badge.svg)
<!-- Plugin description -->
This Fancy IntelliJ Plugin is going to be your implementation of the brilliant ideas that you have.
This specific section is a source for the [plugin.xml](./src/main/resources/META-INF/plugin.xml) file which will be
extracted by the [Gradle](./build.gradle.kts) during the build process.
To keep everything working, do not remove `<!-- ... -->` sections.
<!-- Plugin description end -->
## Installation
- Using IDE built-in plugin system:
<kbd>Preferences</kbd> > <kbd>Plugins</kbd> > <kbd>Marketplace</kbd> > <kbd>Search for "%NAME%"</kbd> >
<kbd>Install Plugin</kbd>
- Manually:
Download the [latest release](https://github.com/%REPOSITORY%/releases/latest) and install it manually using
<kbd>Preferences</kbd> > <kbd>Plugins</kbd> > <kbd>⚙️</kbd> > <kbd>Install plugin from disk...</kbd>
---
Plugin based on the [IntelliJ Plugin Template](https://github.com/JetBrains/intellij-plugin-template).