Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
24 changes: 24 additions & 0 deletions .github/workflows/dependency-graph.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,24 @@
name: Dependency Graph
on:
push:
branches:
- main

concurrency:
# Only run once for latest commit per ref and cancel other (previous) runs.
group: dependency-graph-${{ github.ref }}
cancel-in-progress: true

permissions:
contents: write # this permission is needed to submit the dependency graph

jobs:
dependency-graph:
name: Submit dependencies to GitHub
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
with:
fetch-depth: 0
ref: ${{ inputs.ref }}
- uses: scalacenter/sbt-dependency-submission@v2