diff --git a/.asf.yaml b/.asf.yaml index 553b178807..79cd6c56f5 100644 --- a/.asf.yaml +++ b/.asf.yaml @@ -17,6 +17,9 @@ github: protected_tags: - "v*.*.*" + dependabot_alerts: true + dependabot_updates: true + features: # Enable wiki for documentation wiki: false diff --git a/.github/workflows/dependency-graph.yml b/.github/workflows/dependency-graph.yml new file mode 100644 index 0000000000..f8facc0453 --- /dev/null +++ b/.github/workflows/dependency-graph.yml @@ -0,0 +1,12 @@ +name: Update Dependency Graph +on: + push: + branches: + - main # default branch of the project +jobs: + dependency-graph: + name: Update Dependency Graph + runs-on: ubuntu-latest + steps: + - uses: actions/checkout@v3 + - uses: scalacenter/sbt-dependency-submission@v2