Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Gradle Dependency Submission action is enabled #137

Merged
merged 2 commits into from
Feb 12, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
2 changes: 1 addition & 1 deletion .editorconfig
Original file line number Diff line number Diff line change
Expand Up @@ -9,5 +9,5 @@ insert_final_newline = false
max_line_length = 120
tab_width = 4

[{*.xml,*.xsd}]
[{*.xml,*.xsd,*.yml}]
indent_size = 2
18 changes: 18 additions & 0 deletions .github/workflows/gradle-dependency-submission.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
# calculates dependencies for a Gradle build-target and submits the list to the Dependency Submission API.

on:
push:
branches:
- master

jobs:
update_gradle_dependencies:
runs-on: ubuntu-latest
permissions: # The Dependency Submission API requires write permission
contents: write
steps:
- name: 'Checkout Repository'
uses: actions/checkout@v3

- name: Gradle Dependency Submission
uses: mikepenz/gradle-dependency-submission@v0.8.4