Generate Tests #21
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: Generate Tests | |
on: workflow_dispatch | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout repository | |
uses: actions/checkout@v4 | |
with: | |
fetch-depth: 0 | |
- name: Download IGs and generate tests | |
run: make new_release | |
- name: Change ownership | |
run: sudo chown -R $USER:$USER . | |
- uses: GrantBirki/[email protected] | |
id: git-diff-action | |
- name: Create Pull Request | |
if: steps.git-diff-action.outputs.raw-diff != '' | |
uses: peter-evans/create-pull-request@v6 | |
id: cpr | |
with: | |
token: ${{ secrets.GITHUB_TOKEN }} | |
delete-branch: true | |
commit-message: Merge new auto generated tests | |
title: Merge new auto generated tests | |
body: Merge new auto generated tests | |
labels: automated-pr | |
base: master |