Skip to content

chore(deps): bump neo4j from 5.12.0-enterprise to 5.15.0-enterprise in /neo4j #462

chore(deps): bump neo4j from 5.12.0-enterprise to 5.15.0-enterprise in /neo4j

chore(deps): bump neo4j from 5.12.0-enterprise to 5.15.0-enterprise in /neo4j #462

Workflow file for this run

name: Deploy PR
on:
pull_request:
types:
- opened
- synchronize
defaults:
run:
shell: bash -exuo pipefail {0}
jobs:
env:
name: Environment
runs-on: ubuntu-22.04
outputs:
name: ${{ steps.env.outputs.name }}
steps:
- id: env
uses: arikkfir/delivery-env-name@v1
with:
branch: ${{ github.event.pull_request.head.ref }}
deploy:
name: Deploy
needs: env
runs-on: ubuntu-22.04
environment:
name: ${{ needs.env.outputs.name }}
url: https://acme.${{ needs.env.outputs.name }}.greenstar.kfirs.com
steps:
- uses: arikkfir/deploy@main
with:
repository: greenstar
branch: ${{ github.event.pull_request.head.ref }}
sha: ${{ github.event.pull_request.head.sha }}
environment: ${{ needs.env.outputs.name }}
token: ${{ secrets.ARIKKFIR_GHA_AUTOMATION }}