locona / action-mysqldef

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

GitHub Action: Run mysqldef

This action runs mysqldef on pull requests to improve code review experience.

Inputs

github_token

Required. ${{ github.token }} is used by default.

github_repository

Required. ${{ github.repository }} is used by default.

mysql_host

Optional. --host flag of mysqldef. (default: 127.0.0.1)

mysql_port

Optional. --port flag of mysqldef. (default: 3306)

mysql_user

Required. --user flag of mysqldef.

mysql_password

Required. --password flag of mysqldef.

mysql_database

Required. database name of mysqldef.

schema_path

Required. schema path of mysqldef. (default: schema.sql)

Example usage

name: mysqldef
on: [pull_request]
jobs:
  mysqldef:
    name: mysqldef
    runs-on: ubuntu-latest
    services:
      mysql:
        image: mysql:5.7
        env:
          MYSQL_DATABASE: githubaction
          MYSQL_USER: githubaction
          MYSQL_PASSWORD: githubaction
    steps:
    - uses: actions/checkout@v2
    - name: Run MySQL
      uses: locona/action-mysqldef@master
      with:
        github_token: ${{ secrets.GITHUB_TOKEN }}
        github_repository: ${{ github.repository }}
        mysql_user: githubaction
        mysql_password: githubaction
        mysql_database: githubaction
        schema_path: schema/schema.sql

About


Languages

Language:Shell 61.1%Language:Dockerfile 38.9%