https://github.com/camunda/java-dependency-tree-diff
Adds a comment with the Java Dependency Tree Diff to a PR
https://github.com/camunda/java-dependency-tree-diff
Last synced: 3 months ago
JSON representation
Adds a comment with the Java Dependency Tree Diff to a PR
- Host: GitHub
- URL: https://github.com/camunda/java-dependency-tree-diff
- Owner: camunda
- License: apache-2.0
- Created: 2021-05-11T09:30:26.000Z (over 4 years ago)
- Default Branch: main
- Last Pushed: 2024-01-17T12:27:31.000Z (almost 2 years ago)
- Last Synced: 2025-01-11T00:24:27.706Z (about 1 year ago)
- Language: Shell
- Homepage:
- Size: 32.2 KB
- Stars: 2
- Watchers: 8
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
## GitHub Action: java-dependency-tree-diff
### Setup
Add the following workflow to your GitHub repository under `.github/workflows/main.yml` to enable the action:
```yaml
name: Java Dependency Tree Diff
on:
pull_request:
types: [ labeled ]
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 }}
```
### License
The source files in this repository are made available under the [Apache License Version 2.0](./LICENSE).