Skip to content

Commit

Permalink
Fix CI
Browse files Browse the repository at this point in the history
  • Loading branch information
ILIYANGERMANOV committed Oct 11, 2023
1 parent 31ca51c commit f3e4ad0
Show file tree
Hide file tree
Showing 2 changed files with 37 additions and 18 deletions.
39 changes: 31 additions & 8 deletions .github/dependabot.yml
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:
- google
- 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"
16 changes: 6 additions & 10 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down Expand Up @@ -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
Expand Down

0 comments on commit f3e4ad0

Please sign in to comment.