Skip to content

Commit

Permalink
added GHA to send dependency graph to GH
Browse files Browse the repository at this point in the history
  • Loading branch information
arnaualcazar committed Oct 24, 2024
1 parent ffdd381 commit 81c5ed9
Showing 1 changed file with 23 additions and 0 deletions.
23 changes: 23 additions & 0 deletions .github/workflows/submit-dependency-graph.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
name: Generate and submit dependency graph for nextflow
on:
pull_request:

permissions:
contents: write

jobs:
dependency-submission:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-java@v4
with:
distribution: temurin
java-version: 21

- name: Generate and submit dependency graph for nextflow
uses: gradle/actions/dependency-submission@v4
with:
dependency-resolution-task: ":nextflow:dependencies"
additional-arguments: "--configuration runtimeClasspath"
dependency-graph: generate-and-submit

0 comments on commit 81c5ed9

Please sign in to comment.