mirror of
https://github.com/OpenHands/OpenHands.git
synced 2025-12-26 05:48:36 +08:00
add (placeholder) workflow for regenerating the integration tests (#3657)
* add workflow * add todo
This commit is contained in:
parent
37e6fa442e
commit
09cfcfbee9
26
.github/workflows/regenerate_integration_tests.yml
vendored
Normal file
26
.github/workflows/regenerate_integration_tests.yml
vendored
Normal file
@ -0,0 +1,26 @@
|
||||
|
||||
name: Regenerate Integration Tests
|
||||
|
||||
on:
|
||||
workflow_dispatch:
|
||||
|
||||
jobs:
|
||||
update-readme:
|
||||
if: github.ref != 'refs/heads/main'
|
||||
runs-on: ubuntu-latest
|
||||
|
||||
steps:
|
||||
- name: Checkout repository
|
||||
uses: actions/checkout@v2
|
||||
|
||||
- name: Add newline to README
|
||||
# TODO: change this to regenerate the tests once this workflow is verified as working
|
||||
run: echo "hello world" >> README.md
|
||||
|
||||
- name: Commit changes
|
||||
run: |
|
||||
git config --global user.name 'github-actions[bot]'
|
||||
git config --global user.email 'github-actions[bot]@users.noreply.github.com'
|
||||
git add .
|
||||
git commit -m "Regenerate integration tests"
|
||||
git push
|
||||
Loading…
x
Reference in New Issue
Block a user