Skip to content

Commit

Permalink
Images update: introduce github action
Browse files Browse the repository at this point in the history
Introducing a github action in charge of updating the images once a
week.
  • Loading branch information
picnoir committed Mar 28, 2024
1 parent 67502d6 commit 340ab27
Showing 1 changed file with 39 additions and 0 deletions.
39 changes: 39 additions & 0 deletions .github/workflows/update-images.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,39 @@
name: Update Images
on:
workflow_dispatch:
schedule:
- cron: '0 0 * * MON'
permissions:
contents: write
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: cachix/install-nix-action@v22
with:
nix_path: nixpkgs=channel:nixos-unstable
- uses: DeterminateSystems/magic-nix-cache-action@main
- name: Run update-images.py
run: |
scripts/update-images.py
cat debian.json | jq -S > debian/images.json
rm debian.json
if [[ -z $(git status -s) ]]; then
echo "Images up to date"
exit 0
else
git config user.name github-actions
git config user.email [email protected]
git checkout -b update-images-$(date +%F)
git add debian/images.json
git commit -m "Update images: $(date +%F)"
git push
fi
- name: create pull request
- run: |
gh pr create -B main -H update-images-$(date +%F) \
--title 'Bump images.json' \
--body 'PR generated using scripts/update-images.py'
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}

0 comments on commit 340ab27

Please sign in to comment.