Let's try this #8
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: update examples | |
on: | |
push: | |
branches: | |
- maint-368 | |
pull_request: | |
workflow_dispatch: | |
jobs: | |
e2e-test: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v4 | |
with: | |
submodules: true | |
- name: Set up node env | |
uses: actions/setup-node@v4 | |
with: | |
node-version: 20 | |
- name: Create .env file | |
run: | | |
echo -e "NB_API_QUERY_URL=https://federate.neurobagel.org/\nNB_ENABLE_AUTH=true\nNB_QUERY_CLIENT_ID=mockclientid" > .env | |
- name: build | |
run: npm install && npm run build | |
- name: Run end to end tests | |
uses: cypress-io/github-action@v6 | |
with: | |
wait-on: http://localhost:5173 | |
start: npm run preview | |
spec: cypress/e2e/UpdateExamples.cy.ts | |
component: false | |
- name: Upload test artifacts | |
uses: actions/upload-artifact@v3 | |
with: | |
name: e2e-test-results | |
path: cypress/downloads/* | |
update-query-tool-results: | |
runs-on: ubuntu-latest | |
needs: e2e-test | |
steps: | |
- name: Generate a token | |
id: generate-token | |
uses: actions/create-github-app-token@v1 | |
with: | |
app-id: ${{ vars.NB_BOT_ID }} | |
private-key: ${{ secrets.NB_BOT_KEY }} | |
- name: Checkout neurobagel_examples repository | |
uses: actions/checkout@v4 | |
with: | |
repository: neurobagel/neurobagel_examples | |
path: neurobagel_examples | |
token: ${{ steps.generate-token.outputs.token }} | |
- name: Download artifacts | |
uses: actions/download-artifact@v3 | |
with: | |
name: e2e-test-results | |
path: neurobagel_examples/query-tool-results | |
- name: Check for changes and commit if there are any | |
run: | | |
git config --global user.name "Neurobagel Bot" | |
git config --global user.email "neurobagel-bot[bot]@users.noreply.github.com" | |
git checkout -b update-query-tool-results | |
git add query-tool-results | |
if [[ -n $(git diff --staged) ]]; then | |
git commit -m "Update query-tool-results with new e2e test results" | |
git push origin update-query-tool-results | |
else | |
echo "No changes to commit" | |
fi | |
- name: Create Pull Request | |
id: create_pr | |
if: steps.commit.outputs.changes | |
uses: peter-evans/create-pull-request@v5 | |
with: | |
token: ${{ steps.generate-token.outputs.token }} | |
commit-message: Update `query-tool-results` files | |
branch: neurobagel_examples/update-query-tool-results | |
title: Update `query-tool-results` files | |
body: "This PR updates the `query-tool-results` files with the latest changes." | |
labels: _bot |