1
0
Fork 0
mirror of https://code.forgejo.org/actions/setup-forgejo synced 2024-09-16 16:36:17 +00:00
setup-forgejo/.forgejo/cascading-pr-end-to-end

23 lines
523 B
Bash
Executable file

#!/bin/bash
set -ex
end_to_end=$1
end_to_end_pr=$2
setup_forgejo=$3
setup_forgejo_pr=$4
if test "$(jq --raw-output .state < $setup_forgejo_pr)" = "closed" ; then
echo "closed, do not update"
exit 0
fi
url=$(jq --raw-output .head.repo.html_url < $setup_forgejo_pr)
test "$url" != null
branch=$(jq --raw-output .head.ref < $setup_forgejo_pr)
test "$branch" != null
cd $end_to_end
sed -i -e "s|https://code.forgejo.org/actions/setup-forgejo.*|$url@$branch|" .forgejo/prepare-end-to-end/action.yml
date > last-upgrade