test workflow update
This commit is contained in:
@@ -0,0 +1,20 @@
|
||||
#!/usr/bin/env bash
|
||||
set -euo pipefail
|
||||
|
||||
: "${BRANCH:?BRANCH is required}"
|
||||
: "${FILE:?FILE is required}"
|
||||
: "${COMMIT_MESSAGE:?COMMIT_MESSAGE is required}"
|
||||
|
||||
git config user.name "gitea actions"
|
||||
git config user.email "actions@localhost"
|
||||
|
||||
git checkout -B "$BRANCH"
|
||||
git add "$FILE"
|
||||
|
||||
if git diff --cached --quiet; then
|
||||
echo "No staged changes for ${FILE}; skipping commit"
|
||||
exit 0
|
||||
fi
|
||||
|
||||
git commit -m "$COMMIT_MESSAGE"
|
||||
git push --force origin "$BRANCH"
|
||||
@@ -0,0 +1,48 @@
|
||||
#!/usr/bin/env bash
|
||||
set -euo pipefail
|
||||
|
||||
: "${GITEA_API:?GITEA_API is required}"
|
||||
: "${GITEA_TOKEN:?GITEA_TOKEN is required}"
|
||||
: "${BRANCH:?BRANCH is required}"
|
||||
: "${TITLE:?TITLE is required}"
|
||||
: "${BODY:?BODY is required}"
|
||||
|
||||
owner_prefix="${HEAD_OWNER_PREFIX:-thomas}"
|
||||
|
||||
existing=$(curl -fsS \
|
||||
-H "Authorization: token ${GITEA_TOKEN}" \
|
||||
"${GITEA_API}/pulls?state=open" \
|
||||
| python -c 'import json,sys,os; d=json.load(sys.stdin); b=os.environ["BRANCH"]; print(next((str(pr["number"]) for pr in d if isinstance(pr,dict) and pr.get("head",{}).get("ref")==b), ""))')
|
||||
|
||||
if [ -n "$existing" ]; then
|
||||
echo "PR already exists: #$existing"
|
||||
exit 0
|
||||
fi
|
||||
|
||||
echo "Creating PR..."
|
||||
created="false"
|
||||
for head in "${BRANCH}" "${owner_prefix}:${BRANCH}"; do
|
||||
echo "Trying head=${head}"
|
||||
payload=$(HEAD_REF="$head" TITLE="$TITLE" BODY="$BODY" python -c 'import json,os; print(json.dumps({"title": os.environ["TITLE"], "head": os.environ["HEAD_REF"], "base": "main", "body": os.environ["BODY"]}))')
|
||||
response=$(curl -sS -w '\n%{http_code}' -X POST \
|
||||
-H "Authorization: token ${GITEA_TOKEN}" \
|
||||
-H "Content-Type: application/json" \
|
||||
"${GITEA_API}/pulls" \
|
||||
-d "$payload")
|
||||
|
||||
body=$(printf '%s\n' "$response" | sed '$d')
|
||||
code=$(printf '%s\n' "$response" | tail -n1)
|
||||
|
||||
echo "Create PR status: $code"
|
||||
echo "$body"
|
||||
|
||||
if [ "$code" -ge 200 ] && [ "$code" -lt 300 ]; then
|
||||
created="true"
|
||||
break
|
||||
fi
|
||||
done
|
||||
|
||||
if [ "$created" != "true" ]; then
|
||||
echo "PR creation failed"
|
||||
exit 1
|
||||
fi
|
||||
@@ -0,0 +1,71 @@
|
||||
#!/usr/bin/env bash
|
||||
set -euo pipefail
|
||||
|
||||
: "${FILE:?FILE is required}"
|
||||
: "${LATEST_RELEASE_URL:?LATEST_RELEASE_URL is required}"
|
||||
: "${DOWNLOAD_URL_TEMPLATE:?DOWNLOAD_URL_TEMPLATE is required}"
|
||||
: "${RELEASE_API_REPO:?RELEASE_API_REPO is required}"
|
||||
|
||||
version_strip_prefix="${LATEST_VERSION_STRIP_PREFIX:-v}"
|
||||
release_tag_template="${RELEASE_TAG_TEMPLATE:-{version}}"
|
||||
|
||||
current_version=$(python - <<'PY'
|
||||
import re
|
||||
import os
|
||||
p=os.environ['FILE']
|
||||
s=open(p).read()
|
||||
m=re.search(r'version\s*=\s*"([^"]+)";', s)
|
||||
print(m.group(1) if m else "")
|
||||
PY
|
||||
)
|
||||
|
||||
latest_version=$(curl -fsSLI -o /dev/null -w '%{url_effective}' "$LATEST_RELEASE_URL" \
|
||||
| sed -E 's#.*/##')
|
||||
|
||||
if [ -n "$version_strip_prefix" ]; then
|
||||
latest_version="${latest_version#${version_strip_prefix}}"
|
||||
fi
|
||||
|
||||
echo "current=$current_version"
|
||||
echo "latest=$latest_version"
|
||||
|
||||
if [ -z "$latest_version" ] || [ "$latest_version" = "$current_version" ]; then
|
||||
echo "updated=false" >> "$GITHUB_OUTPUT"
|
||||
exit 0
|
||||
fi
|
||||
|
||||
download_url="${DOWNLOAD_URL_TEMPLATE//\{version\}/$latest_version}"
|
||||
new_hash=$(nix store prefetch-file --json "$download_url" | python -c 'import json,sys; print(json.load(sys.stdin)["hash"])')
|
||||
|
||||
export LATEST_VERSION="$latest_version"
|
||||
export NEW_HASH="$new_hash"
|
||||
|
||||
python - <<'PY'
|
||||
import os
|
||||
import re
|
||||
p=os.environ['FILE']
|
||||
s=open(p).read()
|
||||
s=re.sub(r'version\s*=\s*"[^"]+"', f'version = "{os.environ["LATEST_VERSION"]}"', s, count=1)
|
||||
s=re.sub(r'hash\s*=\s*"[^"]+"', f'hash = "{os.environ["NEW_HASH"]}"', s, count=1)
|
||||
open(p,'w').write(s)
|
||||
PY
|
||||
|
||||
echo "updated=true" >> "$GITHUB_OUTPUT"
|
||||
echo "version=$latest_version" >> "$GITHUB_OUTPUT"
|
||||
echo "previous_version=$current_version" >> "$GITHUB_OUTPUT"
|
||||
|
||||
release_tag="${release_tag_template//\{version\}/$latest_version}"
|
||||
release_notes=$(curl -fsSL "https://api.github.com/repos/${RELEASE_API_REPO}/releases/tags/${release_tag}" \
|
||||
| python -c 'import json,sys; d=json.load(sys.stdin); print((d.get("body") or "").strip())' \
|
||||
|| true)
|
||||
|
||||
if [ -z "$release_notes" ]; then
|
||||
release_notes="_No changelog found in upstream release notes._"
|
||||
fi
|
||||
|
||||
delimiter="CHANGELOG_$(date +%s%N)"
|
||||
{
|
||||
echo "changelog<<${delimiter}"
|
||||
printf '%s\n' "$release_notes"
|
||||
echo "${delimiter}"
|
||||
} >> "$GITHUB_OUTPUT"
|
||||
Reference in New Issue
Block a user