-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathaction.yml
More file actions
33 lines (30 loc) · 981 Bytes
/
action.yml
File metadata and controls
33 lines (30 loc) · 981 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
name: "GeoDiff Action"
description: "GitHub Action for comparing GeoPackage/SQLite files using pygeodiff"
author: "Francesco Bartoli"
branding:
icon: "map"
color: "blue"
inputs:
base_file:
description: "Path to the GeoPackage/SQLite file. If compare_file is not provided, compares current version with the previous git commit."
required: true
compare_file:
description: "Path to the file to compare against base. If not provided, base_file will be compared against its previous git commit version."
required: false
output_format:
description: "Output format for the diff result (json, summary)"
default: "json"
summary:
description: "Add Summary to Job"
default: "true"
token:
description: "GitHub Token"
default: ${{ github.token }}
outputs:
diff_result:
description: "The diff result output"
has_changes:
description: "Boolean indicating if changes were detected"
runs:
using: "docker"
image: "Dockerfile"