From 1dd2a2781e372cd41d9e64555d057a81f5d444b8 Mon Sep 17 00:00:00 2001 From: Joao Correia Date: Mon, 21 Oct 2024 10:18:20 -0700 Subject: [PATCH] Dependabot Configurations (#155) * Create dependency-graph.yml * Create dependabot.yml * Delete .github/dependabot.yml --- .github/workflows/dependency-graph.yml | 19 +++++++++++++++++++ 1 file changed, 19 insertions(+) create mode 100644 .github/workflows/dependency-graph.yml diff --git a/.github/workflows/dependency-graph.yml b/.github/workflows/dependency-graph.yml new file mode 100644 index 00000000..53efe641 --- /dev/null +++ b/.github/workflows/dependency-graph.yml @@ -0,0 +1,19 @@ +# .github/workflows/dependency-graph.yml +name: Update Dependency Graph + +on: + push: + branches: + - main # default branch of the project + +jobs: + update-graph: + name: Update Dependency Graph + runs-on: ubuntu-latest + steps: + - uses: actions/checkout@v3 + - uses: scalacenter/sbt-dependency-submission@v2 + with: + ## Optional: Define the working directory of your build. + ## It should contain the build.sbt file. + working-directory: './'