mirror of
https://github.com/JetBrains/intellij-platform-plugin-template.git
synced 2024-10-27 20:44:05 +00:00
Spellchecking
This commit is contained in:
parent
f631e302f6
commit
79f16d41d3
18
.github/workflows/build.yml
vendored
18
.github/workflows/build.yml
vendored
@ -1,12 +1,12 @@
|
|||||||
# GitHub Actions Workflow is created for testing and preparing the plugin release in the following steps:
|
# GitHub Actions Workflow is created for testing and preparing the plugin release in the following steps:
|
||||||
# - validate Gradle Wrapper,
|
# - Validate Gradle Wrapper.
|
||||||
# - run 'test' and 'verifyPlugin' tasks,
|
# - Run 'test' and 'verifyPlugin' tasks.
|
||||||
# - run Qodana inspections,
|
# - Run Qodana inspections.
|
||||||
# - run 'buildPlugin' task and prepare artifact for the further tests,
|
# - Run the 'buildPlugin' task and prepare artifact for further tests.
|
||||||
# - run 'runPluginVerifier' task,
|
# - Run the 'runPluginVerifier' task.
|
||||||
# - create a draft release.
|
# - Create a draft release.
|
||||||
#
|
#
|
||||||
# Workflow is triggered on push and pull_request events.
|
# The workflow is triggered on push and pull_request events.
|
||||||
#
|
#
|
||||||
# GitHub Actions reference: https://help.github.com/en/actions
|
# GitHub Actions reference: https://help.github.com/en/actions
|
||||||
#
|
#
|
||||||
@ -14,7 +14,7 @@
|
|||||||
|
|
||||||
name: Build
|
name: Build
|
||||||
on:
|
on:
|
||||||
# Trigger the workflow on pushes to only the 'main' branch (this avoids duplicate checks being run e.g. for dependabot pull requests)
|
# Trigger the workflow on pushes to only the 'main' branch (this avoids duplicate checks being run e.g., for dependabot pull requests)
|
||||||
push:
|
push:
|
||||||
branches: [ main ]
|
branches: [ main ]
|
||||||
# Trigger the workflow on any pull request
|
# Trigger the workflow on any pull request
|
||||||
@ -129,7 +129,7 @@ jobs:
|
|||||||
name: tests-result
|
name: tests-result
|
||||||
path: ${{ github.workspace }}/build/reports/tests
|
path: ${{ github.workspace }}/build/reports/tests
|
||||||
|
|
||||||
# Upload Kover report to CodeCov
|
# Upload the Kover report to CodeCov
|
||||||
- name: Upload Code Coverage Report
|
- name: Upload Code Coverage Report
|
||||||
uses: codecov/codecov-action@v3
|
uses: codecov/codecov-action@v3
|
||||||
with:
|
with:
|
||||||
|
2
.github/workflows/release.yml
vendored
2
.github/workflows/release.yml
vendored
@ -74,7 +74,7 @@ jobs:
|
|||||||
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
|
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
|
||||||
run: gh release upload ${{ github.event.release.tag_name }} ./build/distributions/*
|
run: gh release upload ${{ github.event.release.tag_name }} ./build/distributions/*
|
||||||
|
|
||||||
# Create pull request
|
# Create a pull request
|
||||||
- name: Create Pull Request
|
- name: Create Pull Request
|
||||||
if: ${{ steps.properties.outputs.changelog != '' }}
|
if: ${{ steps.properties.outputs.changelog != '' }}
|
||||||
env:
|
env:
|
||||||
|
2
.github/workflows/template-verify.yml
vendored
2
.github/workflows/template-verify.yml
vendored
@ -2,7 +2,7 @@
|
|||||||
|
|
||||||
name: Template Verify
|
name: Template Verify
|
||||||
on:
|
on:
|
||||||
# Trigger the workflow on pushes to only the 'main' branch (this avoids duplicate checks being run e.g. for dependabot pull requests)
|
# Trigger the workflow on pushes to only the 'main' branch (this avoids duplicate checks being run e.g., for dependabot pull requests)
|
||||||
push:
|
push:
|
||||||
branches: [main]
|
branches: [main]
|
||||||
paths: ['**/gradle.properties']
|
paths: ['**/gradle.properties']
|
||||||
|
@ -114,7 +114,7 @@ The project-specific configuration file [`gradle.properties`][file:gradle.proper
|
|||||||
|
|
||||||
The properties listed define the plugin itself or configure the [gradle-intellij-plugin][gh:gradle-intellij-plugin] – check its documentation for more details.
|
The properties listed define the plugin itself or configure the [gradle-intellij-plugin][gh:gradle-intellij-plugin] – check its documentation for more details.
|
||||||
|
|
||||||
In addition, extra behaviours are configured through the [`gradle.properties`][file:gradle.properties] file, such as:
|
In addition, extra behaviors are configured through the [`gradle.properties`][file:gradle.properties] file, such as:
|
||||||
|
|
||||||
| Property name | Value | Description |
|
| Property name | Value | Description |
|
||||||
|--------------------------------------------------|---------|------------------------------------------------------------------------------------------------|
|
|--------------------------------------------------|---------|------------------------------------------------------------------------------------------------|
|
||||||
|
Loading…
Reference in New Issue
Block a user