Compare commits

..
Author SHA1 Message Date
Jeremy Soller 9e8ac99bcb Update for 1.0.9 tags 2026-04-07 14:34:23 -06:00
Jeremy Soller efe2c51b53 Prepare for next tag 2026-02-24 10:27:40 -07:00
Jeremy Soller 9b0e61c54b Prepare for next tag 2026-02-17 14:17:02 -07:00
Jeremy Soller f5fa41194e Update repos 2026-02-13 12:32:54 -07:00
Jeremy Soller f9abdc105d Add PR template 2026-02-13 12:21:16 -07:00
Jeremy Soller dee71b6f25 Update for 1.0.6 tag 2026-02-10 11:07:25 -07:00
Jeremy Soller d955da69d4 Prepare for 1.0.5 tag 2026-02-03 09:08:14 -07:00
28 changed files with 48 additions and 34 deletions
+8
View File
@@ -0,0 +1,8 @@
- [ ] I have disclosed use of any AI generated code in my commit messages.
- If you are using an LLM, and do not fully understand the changes it is making to the code base, do not create a PR.
- In our experience, AI generated code often results in overly complex code that lacks enough context for a proper fix or feature inclusion. This results in considerably longer code reviews. Due to this, AI authored or partially authored PRs may be closed without comment.
- [ ] I understand these changes in full and will be able to respond to review comments.
- [ ] My change is accurately described in the commit message.
- [ ] My contribution is tested and working as described.
- [ ] I have read the [Developer Certificate of Origin](https://developercertificate.org/) and certify my contribution under its conditions.
+14 -8
View File
@@ -3,7 +3,7 @@
set -e
# This should be the _next_ epoch version
version=1.0.4
version=1.0.9
subject="Epoch ${version} version update"
description="Generated by cosmic-epoch scripts/version-update.sh"
@@ -30,11 +30,17 @@ do
cargo update
git commit -a -m "${subject}" -m "${description}"
git push -f -u origin epoch-update
gh pr create \
--title "${subject}" \
--body "${description}" \
--assignee "@me" \
--reviewer "pop-os/engineering" \
--reviewer "pop-os/quality-assurance"
pr_url="$(gh pr list --head epoch-update --state open --json url --jq '.[].url')"
if [ -n "${pr_url}" ]
then
echo "PR already open: ${pr_url}"
else
gh pr create \
--title "${subject}" \
--body "${description}" \
--assignee "@me" \
--reviewer "pop-os/engineering" \
--reviewer "pop-os/quality-assurance"
fi
popd
done
done