mirror of
https://code.forgejo.org/actions/cascading-pr.git
synced 2025-04-22 00:48:44 +00:00
15 lines
233 B
Text
15 lines
233 B
Text
|
#!/bin/bash
|
||
|
|
||
|
set -ex
|
||
|
|
||
|
destination_checkout="$1"
|
||
|
destination_pr_json="$2"
|
||
|
origin_checkout="$3"
|
||
|
origin_pr_json="$4"
|
||
|
|
||
|
test -d $destination_checkout
|
||
|
test -d $origin_checkout
|
||
|
test -f $origin_pr_json
|
||
|
|
||
|
date +%s > $destination_checkout/last
|