test: support background_ddl_rate
in recovery test
#1329
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Hakari Fix | |
on: | |
pull_request: | |
types: ["opened", "synchronize"] | |
paths: ["Cargo.lock", "**/Cargo.toml"] | |
jobs: | |
hakari-fix: | |
runs-on: ubuntu-latest | |
permissions: | |
contents: write | |
steps: | |
- uses: actions/checkout@v3 | |
with: | |
ref: ${{ github.event.pull_request.head.ref }} | |
repository: ${{ github.event.pull_request.head.repo.full_name }} | |
- name: Install cargo-hakari | |
uses: taiki-e/install-action@v2 | |
with: | |
tool: cargo-hakari | |
- name: Hakari generate | |
run: cargo hakari generate | |
- name: Show diff | |
run: git diff | |
- uses: stefanzweifel/git-auto-commit-action@v4 | |
with: | |
commit_message: Fix "cargo-hakari" |