Skip to content

Commit b1a71e6

Browse files
committed
chore(clean_up): disable unused workflows, clean IntelliJ config, and adjust .gitignore
- Commented out unused `inspectCode` job in `build.yml`. - Disabled `pull_request` trigger in `ci.yml` in favor of `workflow_dispatch`. - Removed IntelliJ-specific `.iml` files and updated `.gitignore` to exclude them recursively. - Included modules folder in `.gitignore` exceptions.
1 parent cf92bb7 commit b1a71e6

File tree

7 files changed

+45
-283
lines changed

7 files changed

+45
-283
lines changed

.github/workflows/build.yml

Lines changed: 36 additions & 36 deletions
Original file line numberDiff line numberDiff line change
@@ -132,42 +132,42 @@ jobs:
132132
token: ${{ secrets.CODECOV_TOKEN }}
133133

134134
# Run Qodana inspections and provide a report
135-
inspectCode:
136-
name: Inspect code
137-
needs: [ build ]
138-
runs-on: ubuntu-latest
139-
permissions:
140-
contents: write
141-
checks: write
142-
pull-requests: write
143-
steps:
144-
145-
# Free GitHub Actions Environment Disk Space
146-
- name: Maximize Build Space
147-
uses: jlumbroso/[email protected]
148-
with:
149-
tool-cache: false
150-
large-packages: false
151-
152-
# Check out the current repository
153-
- name: Fetch Sources
154-
uses: actions/checkout@v4
155-
with:
156-
ref: ${{ github.event.pull_request.head.sha }} # to check out the actual pull request commit, not the merge commit
157-
fetch-depth: 0 # a full history is required for pull request analysis
158-
159-
# Set up the Java environment for the next steps
160-
- name: Setup Java
161-
uses: actions/setup-java@v4
162-
with:
163-
distribution: zulu
164-
java-version: 21
165-
166-
# Run Qodana inspections
167-
- name: Qodana - Code Inspection
168-
uses: JetBrains/[email protected]
169-
with:
170-
cache-default-branch-only: true
135+
# inspectCode:
136+
# name: Inspect code
137+
# needs: [ build ]
138+
# runs-on: ubuntu-latest
139+
# permissions:
140+
# contents: write
141+
# checks: write
142+
# pull-requests: write
143+
# steps:
144+
#
145+
# # Free GitHub Actions Environment Disk Space
146+
# - name: Maximize Build Space
147+
# uses: jlumbroso/[email protected]
148+
# with:
149+
# tool-cache: false
150+
# large-packages: false
151+
#
152+
# # Check out the current repository
153+
# - name: Fetch Sources
154+
# uses: actions/checkout@v4
155+
# with:
156+
# ref: ${{ github.event.pull_request.head.sha }} # to check out the actual pull request commit, not the merge commit
157+
# fetch-depth: 0 # a full history is required for pull request analysis
158+
#
159+
# # Set up the Java environment for the next steps
160+
# - name: Setup Java
161+
# uses: actions/setup-java@v4
162+
# with:
163+
# distribution: zulu
164+
# java-version: 21
165+
#
166+
# # Run Qodana inspections
167+
# - name: Qodana - Code Inspection
168+
# uses: JetBrains/[email protected]
169+
# with:
170+
# cache-default-branch-only: true
171171

172172
# Run plugin structure verification along with IntelliJ Plugin Verifier
173173
verify:

.github/workflows/ci.yml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -5,11 +5,11 @@ permissions:
55
actions: write
66

77
on:
8-
pull_request:
9-
types: [ opened, synchronize, reopened ]
10-
paths-ignore:
11-
- '**/*.md'
12-
8+
workflow_dispatch:
9+
# pull_request:
10+
# types: [ opened, synchronize, reopened ]
11+
# paths-ignore:
12+
# - '**/*.md'
1313

1414
jobs:
1515
build:

.gitignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -47,3 +47,4 @@ out/
4747

4848
/src/main/gen
4949
/.kotlin
50+
!/.idea/modules/

.idea/modules/webstorm-vento.iml

Lines changed: 0 additions & 14 deletions
This file was deleted.

.idea/modules/webstorm-vento.main.iml

Lines changed: 0 additions & 100 deletions
This file was deleted.

0 commit comments

Comments
 (0)