mirror of
https://github.com/nextcloud/android.git
synced 2024-11-26 15:15:51 +03:00
7817a3b8d5
Signed-off-by: tobiasKaminsky <tobias@kaminsky.me> Co-authored-by: Álvaro Brey <alvaro.brey@nextcloud.com> Signed-off-by: tobiasKaminsky <tobias@kaminsky.me>
15 lines
376 B
YAML
15 lines
376 B
YAML
name: "Detect new java files"
|
|
|
|
on:
|
|
pull_request:
|
|
branches: [ master, stable-* ]
|
|
|
|
jobs:
|
|
detectNewJavaFiles:
|
|
runs-on: ubuntu-latest
|
|
|
|
steps:
|
|
- uses: trilom/file-changes-action@v1.2.3
|
|
- uses: actions/checkout@v2
|
|
- name: Detect new java files
|
|
run: scripts/analysis/detectNewJavaFiles.sh
|