mirror of
https://github.com/nextcloud/android.git
synced 2024-12-21 00:12:05 +03:00
47c902deda
Signed-off-by: Andy Scherzinger <info@andy-scherzinger.de>
21 lines
517 B
YAML
21 lines
517 B
YAML
name: "Detect snapshot"
|
|
|
|
on:
|
|
pull_request:
|
|
branches: [ master, stable-* ]
|
|
|
|
# Declare default permissions as read only.
|
|
permissions: read-all
|
|
|
|
concurrency:
|
|
group: detect-snapshot-${{ github.head_ref || github.run_id }}
|
|
cancel-in-progress: true
|
|
|
|
jobs:
|
|
detectSnapshot:
|
|
runs-on: ubuntu-latest
|
|
|
|
steps:
|
|
- uses: actions/checkout@8e5e7e5ab8b370d6c329ec480221332ada57f0ab # v3
|
|
- name: Detect SNAPSHOT
|
|
run: scripts/analysis/detectSNAPSHOT.sh
|