2024-11-11 17:52:23 +01:00
|
|
|
{
|
|
|
|
name = "npins update";
|
|
|
|
on.schedule = [
|
2023-12-12 14:46:36 +01:00
|
|
|
# Run at 11 o'clock every wednesday
|
2024-11-11 17:52:23 +01:00
|
|
|
{ cron = "25 15 * * *"; }
|
|
|
|
];
|
|
|
|
|
|
|
|
jobs.npins_update = {
|
|
|
|
runs-on = "nix";
|
|
|
|
steps = [
|
|
|
|
{
|
|
|
|
uses = "actions/checkout@v3";
|
|
|
|
"with" = {
|
|
|
|
depth = 0;
|
|
|
|
token = "\${{ secrets.TEA_DGNUM_CHORES_TOKEN }}";
|
|
|
|
};
|
|
|
|
}
|
|
|
|
|
|
|
|
{
|
|
|
|
name = "Update dependencies and open PR if necessary";
|
|
|
|
run = ''
|
2023-12-11 11:29:39 +01:00
|
|
|
npins update
|
|
|
|
|
2023-12-12 14:46:36 +01:00
|
|
|
if [ ! -z "$(git diff --name-only)" ]; then
|
2023-12-11 11:29:39 +01:00
|
|
|
echo "[+] Changes detected, pushing updates."
|
|
|
|
|
2023-12-12 14:46:36 +01:00
|
|
|
git switch -C npins-update
|
|
|
|
|
2023-12-11 11:29:39 +01:00
|
|
|
git add npins
|
2023-12-12 14:46:36 +01:00
|
|
|
|
|
|
|
git config user.name "DGNum Chores"
|
|
|
|
git config user.email "tech@dgnum.eu"
|
|
|
|
|
2023-12-11 11:29:39 +01:00
|
|
|
git commit --message "chore(npins): Update"
|
2023-12-12 14:46:36 +01:00
|
|
|
git push --set-upstream origin npins-update --force
|
2023-12-11 11:29:39 +01:00
|
|
|
|
|
|
|
# Connect to the server with the cli
|
|
|
|
tea login add \
|
|
|
|
-n dgnum-chores \
|
2024-11-11 17:52:23 +01:00
|
|
|
-t "''${{ secrets.TEA_DGNUM_CHORES_TOKEN }}" \
|
2023-12-11 11:29:39 +01:00
|
|
|
-u https://git.dgnum.eu
|
|
|
|
|
|
|
|
# Create a pull request if needed
|
|
|
|
# i.e. no PR with the same title exists
|
2023-12-12 14:46:36 +01:00
|
|
|
if [ -z "$(tea pr ls -f='title,author' -o simple | grep 'chore(npins): Update dgnum-chores')" ]; then
|
|
|
|
tea pr create \
|
|
|
|
--description "Automatic npins update" \
|
|
|
|
--title "chore(npins): Update" \
|
|
|
|
--head npins-update
|
|
|
|
fi
|
2023-12-11 11:29:39 +01:00
|
|
|
fi
|
2024-11-11 17:52:23 +01:00
|
|
|
'';
|
|
|
|
}
|
|
|
|
];
|
|
|
|
};
|
|
|
|
}
|