Skip to content

Commit

Permalink
Merge pull request #137 from duemir/enabled-gradle-dependency-submission
Browse files Browse the repository at this point in the history
Gradle Dependency Submission action is enabled
  • Loading branch information
duemir committed Feb 12, 2023
2 parents 3e48196 + be63546 commit 546063b
Show file tree
Hide file tree
Showing 2 changed files with 19 additions and 1 deletion.
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

0 comments on commit 546063b

Please sign in to comment.