Skip to content

Commit

Permalink
Set up sbt dependency submission
Browse files Browse the repository at this point in the history
  • Loading branch information
mkurz committed Mar 1, 2023
1 parent 31b0d0f commit c186391
Showing 1 changed file with 24 additions and 0 deletions.
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

0 comments on commit c186391

Please sign in to comment.