Corpus Merge #869
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
--- | |
jobs: | |
corpus-merge: | |
runs-on: ubuntu-22.04 | |
steps: | |
- uses: actions/checkout@v4.1.7 | |
with: | |
fetch-depth: 0 | |
submodules: true | |
- name: Corpus merge | |
uses: ./ | |
with: | |
run: | | |
rustup default stable | |
CI= python tools/corpus_merge.py | |
- continue-on-error: true | |
uses: stefanzweifel/git-auto-commit-action@v5.0.1 | |
with: | |
branch: corpus-${{ github.run_id }}-merge | |
commit_message: Update fuzzing corpus. | |
create_branch: true | |
file_pattern: unit_tests/fuzz | |
repository: ${{ github.workspace }} | |
name: Corpus Merge | |
# yamllint disable-line rule:truthy | |
on: | |
push: | |
branches: | |
- stable | |
paths: | |
- .github/workflows/corpus-merge.yml | |
schedule: | |
- cron: 53 11 * * 5 | |
workflow_dispatch: ~ |