add (placeholder) workflow for regenerating the integration tests (#3657)

* add workflow

* add todo
This commit is contained in:
Robert Brennan 2024-08-29 16:12:11 -04:00 committed by GitHub
parent 37e6fa442e
commit 09cfcfbee9
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View 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