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