Skip to content

Commit

Permalink
build: run dependency-submission only on master branch
Browse files Browse the repository at this point in the history
Signed-off-by: skhokhlov <[email protected]>
  • Loading branch information
skhokhlov committed Aug 9, 2024
1 parent 4de42b7 commit 1046e09
Showing 1 changed file with 24 additions and 0 deletions.
24 changes: 24 additions & 0 deletions .github/workflows/dependency-submission.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,24 @@
name: Dependency Submission

on:
push:
branches:
- master
workflow_dispatch:

permissions:
contents: write

jobs:
dependency-submission:
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/[email protected]
- name: Setup Java
uses: actions/[email protected]
with:
distribution: 'temurin'
java-version: 8
- name: Generate and submit dependency graph
uses: gradle/actions/[email protected]

0 comments on commit 1046e09

Please sign in to comment.