mirror of
https://github.com/JetBrains/intellij-platform-plugin-template.git
synced 2025-12-05 06:11:52 +00:00
removed hidden spaces
This commit is contained in:
parent
28451c0c0f
commit
e42a8d69c3
4
.github/template-cleanup/README.md
vendored
4
.github/template-cleanup/README.md
vendored
@ -28,10 +28,10 @@ To keep everything working, do not remove `<!-- ... -->` sections.
|
|||||||
## Installation
|
## Installation
|
||||||
|
|
||||||
- Using the IDE built-in plugin system:
|
- Using the IDE built-in plugin system:
|
||||||
|
|
||||||
<kbd>Settings/Preferences</kbd> > <kbd>Plugins</kbd> > <kbd>Marketplace</kbd> > <kbd>Search for "%NAME%"</kbd> >
|
<kbd>Settings/Preferences</kbd> > <kbd>Plugins</kbd> > <kbd>Marketplace</kbd> > <kbd>Search for "%NAME%"</kbd> >
|
||||||
<kbd>Install</kbd>
|
<kbd>Install</kbd>
|
||||||
|
|
||||||
- Using JetBrains Marketplace:
|
- Using JetBrains Marketplace:
|
||||||
|
|
||||||
Go to [JetBrains Marketplace](https://plugins.jetbrains.com/plugin/MARKETPLACE_ID) and install it by clicking the <kbd>Install to ...</kbd> button in case your IDE is running.
|
Go to [JetBrains Marketplace](https://plugins.jetbrains.com/plugin/MARKETPLACE_ID) and install it by clicking the <kbd>Install to ...</kbd> button in case your IDE is running.
|
||||||
|
|||||||
8
.github/workflows/build.yml
vendored
8
.github/workflows/build.yml
vendored
@ -23,7 +23,7 @@ on:
|
|||||||
concurrency:
|
concurrency:
|
||||||
group: ${{ github.workflow }}-${{ github.event.pull_request.number || github.ref }}
|
group: ${{ github.workflow }}-${{ github.event.pull_request.number || github.ref }}
|
||||||
cancel-in-progress: true
|
cancel-in-progress: true
|
||||||
|
|
||||||
jobs:
|
jobs:
|
||||||
|
|
||||||
# Prepare the environment and build the plugin
|
# Prepare the environment and build the plugin
|
||||||
@ -148,8 +148,8 @@ jobs:
|
|||||||
- name: Fetch Sources
|
- name: Fetch Sources
|
||||||
uses: actions/checkout@v4
|
uses: actions/checkout@v4
|
||||||
with:
|
with:
|
||||||
ref: ${{ github.event.pull_request.head.sha }} # to check out the actual pull request commit, not the merge commit
|
ref: ${{ github.event.pull_request.head.sha }} # to check out the actual pull request commit, not the merge commit
|
||||||
fetch-depth: 0 # a full history is required for pull request analysis
|
fetch-depth: 0 # a full history is required for pull request analysis
|
||||||
|
|
||||||
# Set up the Java environment for the next steps
|
# Set up the Java environment for the next steps
|
||||||
- name: Setup Java
|
- name: Setup Java
|
||||||
@ -239,7 +239,7 @@ jobs:
|
|||||||
VERSION=$(./gradlew properties --property version --quiet --console=plain | tail -n 1 | cut -f2- -d ' ')
|
VERSION=$(./gradlew properties --property version --quiet --console=plain | tail -n 1 | cut -f2- -d ' ')
|
||||||
RELEASE_NOTE="./build/tmp/release_note.txt"
|
RELEASE_NOTE="./build/tmp/release_note.txt"
|
||||||
./gradlew getChangelog --unreleased --no-header --quiet --console=plain --output-file=$RELEASE_NOTE
|
./gradlew getChangelog --unreleased --no-header --quiet --console=plain --output-file=$RELEASE_NOTE
|
||||||
|
|
||||||
gh release create $VERSION \
|
gh release create $VERSION \
|
||||||
--draft \
|
--draft \
|
||||||
--title $VERSION \
|
--title $VERSION \
|
||||||
|
|||||||
2
.github/workflows/release.yml
vendored
2
.github/workflows/release.yml
vendored
@ -87,7 +87,7 @@ jobs:
|
|||||||
git checkout -b $BRANCH
|
git checkout -b $BRANCH
|
||||||
git commit -am "Changelog update - $VERSION"
|
git commit -am "Changelog update - $VERSION"
|
||||||
git push --set-upstream origin $BRANCH
|
git push --set-upstream origin $BRANCH
|
||||||
|
|
||||||
gh label create "$LABEL" \
|
gh label create "$LABEL" \
|
||||||
--description "Pull requests with release changelog update" \
|
--description "Pull requests with release changelog update" \
|
||||||
--force \
|
--force \
|
||||||
|
|||||||
4
.github/workflows/template-verify.yml
vendored
4
.github/workflows/template-verify.yml
vendored
@ -29,7 +29,7 @@ jobs:
|
|||||||
- name: Verify gradle.properties
|
- name: Verify gradle.properties
|
||||||
run: |
|
run: |
|
||||||
echo "\`\`\`diff" >> $GITHUB_STEP_SUMMARY
|
echo "\`\`\`diff" >> $GITHUB_STEP_SUMMARY
|
||||||
|
|
||||||
diff -U 0 \
|
diff -U 0 \
|
||||||
-I '^pluginVersion' \
|
-I '^pluginVersion' \
|
||||||
-I '^pluginGroup' \
|
-I '^pluginGroup' \
|
||||||
@ -39,5 +39,5 @@ jobs:
|
|||||||
--label gradle.properties \
|
--label gradle.properties \
|
||||||
.github/template-cleanup/gradle.properties gradle.properties \
|
.github/template-cleanup/gradle.properties gradle.properties \
|
||||||
>> $GITHUB_STEP_SUMMARY
|
>> $GITHUB_STEP_SUMMARY
|
||||||
|
|
||||||
echo "\`\`\`" >> $GITHUB_STEP_SUMMARY
|
echo "\`\`\`" >> $GITHUB_STEP_SUMMARY
|
||||||
|
|||||||
@ -195,11 +195,11 @@ It provides general information about the plugin, its dependencies, extensions,
|
|||||||
<id>org.jetbrains.plugins.template</id>
|
<id>org.jetbrains.plugins.template</id>
|
||||||
<name>Template</name>
|
<name>Template</name>
|
||||||
<vendor>JetBrains</vendor>
|
<vendor>JetBrains</vendor>
|
||||||
|
|
||||||
<depends>com.intellij.modules.platform</depends>
|
<depends>com.intellij.modules.platform</depends>
|
||||||
|
|
||||||
<resource-bundle>messages.MyBundle</resource-bundle>
|
<resource-bundle>messages.MyBundle</resource-bundle>
|
||||||
|
|
||||||
<extensions defaultExtensionNs="com.intellij">
|
<extensions defaultExtensionNs="com.intellij">
|
||||||
<toolWindow factoryClass="..." id="..."/>
|
<toolWindow factoryClass="..." id="..."/>
|
||||||
</extensions>
|
</extensions>
|
||||||
|
|||||||
Loading…
Reference in New Issue
Block a user