kelsos / action-sqldiff

Custom github action that adds SQLite database diffs in a PR

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

@rotki/action-sqldiff

CI Check dist/ CodeQL Coverage

Custom GitHub action to check for changes of SQLCipher/SQLite databases and post a diff on the PR.

Usage

name: Track SQLite changes

on:
  pull_request_target:
    branches:
      - main

permissions:
  contents: read
  pull-requests: write

jobs:
  test-action:
    name: GitHub Actions Test
    runs-on: ubuntu-24.04

    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

License

AGPL-3.0 License © 2023- Rotki Solutions GmbH

About

Custom github action that adds SQLite database diffs in a PR

License:GNU Affero General Public License v3.0


Languages

Language:TypeScript 86.6%Language:Shell 10.0%Language:JavaScript 3.4%