Custom GitHub action to check for changes of SQLCipher/SQLite databases and post a diff on the PR.
name: Track SQLite changes
on:
pull_request_target:
branches:
- main
permissions: {}
jobs:
test-action:
name: GitHub Actions Test
runs-on: ubuntu-24.04
permissions:
contents: read
pull-requests: write
steps:
- name: Install required
run: sudo apt-get install -y sqlcipher sqlite3-tools
- name: Test Local Action
id: test-action
uses: rotki/action-sqldiff@v1
with:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
files: |
*.db
AGPL-3.0 License © 2023- Rotki Solutions GmbH