Skip to content

Commit

Permalink
adds action to convert images in PRs
Browse files Browse the repository at this point in the history
  • Loading branch information
sgiehl committed Dec 9, 2024
1 parent 5008974 commit cef7a9b
Showing 1 changed file with 35 additions and 0 deletions.
35 changes: 35 additions & 0 deletions .github/workflows/convertimages.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,35 @@
name: Convert Images

on:
pull_request:
types: [opened, synchronize]
push:
branches:
- '*'

permissions:
actions: read
checks: read
contents: read
deployments: none
issues: read
packages: none
pull-requests: read
repository-projects: none
security-events: none
statuses: none

jobs:
build:
runs-on: 'ubuntu-latest'
name: Tests
steps:
- uses: actions/checkout@v4
- name: Install Dependencies
run: |
sudo apt update
sudo apt install imagemagick=6.9 pngquant=3.0 inkscape=1.2
shell: bash
- name: Run convert images
run: convert.sh
shell: bash

0 comments on commit cef7a9b

Please sign in to comment.