pull/328/merge
Krystal L Boozel 2 years ago committed by GitHub
commit a5bb293bf8
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

@ -0,0 +1,25 @@
build:
name: Template Verify
if: github.event.repository.name == 'intellij-platform-plugin-template'
runs-on: ubuntu-latest
outputs:
version: ${{ steps.properties.outputs.version }}
changelog: ${{ steps.properties.outputs.changelog }}
steps:
# Check out current repository
- name: Fetch Sources
uses: actions/checkout@v3
# Compare `gradle.properties` with `.github/template-cleanup/gradle.properties`
- name: Verify gradle.properties
run: |
echo "\`\`\`diff" >> $GITHUB_STEP_SUMMARY
diff -U 0 \
-I '^pluginVersion' \
-I '^pluginGroup' \
-I '^pluginName' \
-I '^pluginRepositoryUrl' \
--label .github/template-cleanup/gradle.properties \
--label gradle.properties \
.github/template-cleanup/gradle.properties gradle.properties \
Loading…
Cancel
Save