Skip to content

Commit e3267bb

Browse files
committed
chore: remove template verify
1 parent 0387f83 commit e3267bb

1 file changed

Lines changed: 1 addition & 29 deletions

File tree

.github/workflows/build.yml

Lines changed: 1 addition & 29 deletions
Original file line numberDiff line numberDiff line change
@@ -38,34 +38,6 @@ jobs:
3838
- name: Validate Conventional Commits
3939
uses: wagoid/commitlint-github-action@v5
4040

41-
# Verify gradle.properties against template
42-
templateVerify:
43-
name: Template Verify
44-
if: github.event.repository.name == 'intellij-platform-plugin-template'
45-
runs-on: ubuntu-latest
46-
steps:
47-
48-
# Check out the current repository
49-
- name: Fetch Sources
50-
uses: actions/checkout@v6
51-
52-
# Compare `gradle.properties` with `.github/template-cleanup/gradle.properties`
53-
- name: Verify gradle.properties
54-
run: |
55-
echo "\`\`\`diff" >> $GITHUB_STEP_SUMMARY
56-
57-
diff -U 0 \
58-
-I '^pluginVersion' \
59-
-I '^pluginGroup' \
60-
-I '^pluginName' \
61-
-I '^pluginRepositoryUrl' \
62-
--label .github/template-cleanup/gradle.properties \
63-
--label gradle.properties \
64-
.github/template-cleanup/gradle.properties gradle.properties \
65-
>> $GITHUB_STEP_SUMMARY
66-
67-
echo "\`\`\`" >> $GITHUB_STEP_SUMMARY
68-
6941
# Run linting checks
7042
lint:
7143
name: Lint
@@ -94,7 +66,7 @@ jobs:
9466
# Prepare the environment and build the plugin
9567
build:
9668
name: Build
97-
needs: [ validateCommits, templateVerify, lint ]
69+
needs: [ validateCommits, lint ]
9870
runs-on: ubuntu-latest
9971
steps:
10072

0 commit comments

Comments
 (0)