Skip to content

Commit

Permalink
chore(project): add java dependency tree github action
Browse files Browse the repository at this point in the history
  • Loading branch information
tasso94 authored May 11, 2021
1 parent 5fca59c commit 7383cb0
Showing 1 changed file with 15 additions and 0 deletions.
15 changes: 15 additions & 0 deletions .github/workflows/java-dependency-tree.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
name: Java Dependency Tree Diff

on: [pull_request]

jobs:
build:
runs-on: ubuntu-latest
if: ${{ github.event.label.name == 'java-dependency-tree' }}
steps:
- uses: actions/checkout@v2.3.4
with:
ref: ${{ github.event.pull_request.head.sha }}
- uses: camunda/java-dependency-tree-diff@main
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}

0 comments on commit 7383cb0

Please sign in to comment.