generated from JetBrains/intellij-platform-plugin-template
-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
31ca51c
commit f3e4ad0
Showing
2 changed files
with
37 additions
and
18 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,17 +1,40 @@ | ||
# Dependabot configuration: | ||
# https://docs.github.com/en/free-pro-team@latest/github/administering-a-repository/configuration-options-for-dependency-updates | ||
# Configuration options: | ||
# https://docs.github.com/en/code-security/dependabot/dependabot-version-updates/configuration-options-for-the-dependabot.yml-file#about-the-dependabotyml-file | ||
|
||
version: 2 | ||
|
||
updates: | ||
# Maintain dependencies for Gradle dependencies | ||
- package-ecosystem: "gradle" | ||
directory: "/" | ||
target-branch: "next" | ||
schedule: | ||
interval: "daily" | ||
# Maintain dependencies for GitHub Actions | ||
interval: "weekly" | ||
registries: | ||
- jitpack | ||
- maven-central | ||
open-pull-requests-limit: 10 | ||
groups: | ||
ivy-wallet: | ||
patterns: | ||
- "*" | ||
|
||
- package-ecosystem: "github-actions" | ||
directory: "/" | ||
target-branch: "next" | ||
schedule: | ||
interval: "daily" | ||
interval: "weekly" | ||
open-pull-requests-limit: 10 | ||
groups: | ||
github-actions: | ||
patterns: | ||
- "*" | ||
|
||
registries: | ||
google: | ||
type: maven-repository | ||
url: "https://maven.google.com/" | ||
jitpack: | ||
type: maven-repository | ||
url: "https://jitpack.io/" | ||
maven-central: | ||
type: maven-repository | ||
url: "https://repo.maven.apache.org/maven2" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -14,16 +14,12 @@ | |
|
||
name: Build | ||
on: | ||
workflow_dispatch | ||
#on: | ||
# # Trigger the workflow on pushes to only the 'main' branch (this avoids duplicate checks being run e.g. for dependabot pull requests) | ||
# push: | ||
# branches: [main] | ||
# # Trigger the workflow on any pull request | ||
# pull_request: | ||
push: | ||
branches: | ||
- main | ||
pull_request: | ||
|
||
jobs: | ||
|
||
# Run Gradle Wrapper Validation Action to verify the wrapper's checksum | ||
# Run verifyPlugin, IntelliJ Plugin Verifier, and test Gradle tasks | ||
# Build plugin and provide the artifact for the next workflow jobs | ||
|
@@ -116,8 +112,8 @@ jobs: | |
path: ${{ github.workspace }}/build/reports/pluginVerifier | ||
|
||
# Run Qodana inspections | ||
#- name: Qodana - Code Inspection | ||
# uses: JetBrains/[email protected] | ||
- name: Qodana - Code Inspection | ||
uses: JetBrains/[email protected] | ||
|
||
# Prepare plugin archive content for creating artifact | ||
- name: Prepare Plugin Artifact | ||
|