Skip to content

Commit

Permalink
Try manual again
Browse files Browse the repository at this point in the history
  • Loading branch information
jdawang committed Nov 5, 2024
1 parent 09bffc7 commit d03fee4
Showing 1 changed file with 22 additions and 5 deletions.
27 changes: 22 additions & 5 deletions .github/workflows/edgetest.yml
Original file line number Diff line number Diff line change
Expand Up @@ -31,9 +31,26 @@ jobs:
java-version: '8'
distribution: 'adopt'

- id: run-edgetest
uses: edgetest-dev/[email protected]
- name: Install edgetest
shell: bash -el {0}
run: |
conda install pip
conda install edgetest edgetest-conda
python -m pip install .[dev]
- name: Run edgetest
shell: bash -el {0}
run: |
edgetest -c pyproject.toml --export
- name: Create Pull Request
uses: peter-evans/create-pull-request@v7
with:
edgetest-flags: '-c pyproject.toml --export'
base-branch: ${{ github.ref_name }}
skip-pr: 'false'
branch: edgetest-patch
base: ${{ github.ref_name }}
delete-branch: true
title: Changes by run-edgetest action
commit-message: '[edgetest] automated change'
body: Automated changes by [run-edgetest-action](https://github.com/edgetest-dev/run-edgetest-action) GitHub action
add-paths: |
pyproject.toml

0 comments on commit d03fee4

Please sign in to comment.