File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 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
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
You can’t perform that action at this time.
0 commit comments