Skip to content

Commit 5f7a4a9

Browse files
authored
Add ReleaseOps Aura Tests workflow
1 parent e85c8e6 commit 5f7a4a9

File tree

1 file changed

+28
-0
lines changed

1 file changed

+28
-0
lines changed
Lines changed: 28 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,28 @@
1+
name: "ReleaseOps Aura Tests"
2+
3+
on:
4+
# Allows you to run this workflow manually from the Actions tab
5+
workflow_dispatch:
6+
pull_request_target:
7+
branches:
8+
- dev
9+
paths:
10+
- "**/CHANGELOG.md"
11+
12+
concurrency:
13+
group: ${{ github.workflow }}-${{ github.head_ref || github.ref }}-aura
14+
cancel-in-progress: true
15+
16+
jobs:
17+
aura-professional-5-tests:
18+
if: |
19+
github.event_name != 'pull_request_target' ||
20+
github.event.pull_request.user.login == 'neo4j-team-graphql' &&
21+
startsWith(github.head_ref, 'changeset-release/')
22+
uses: ./.github/workflows/reusable-aura-tests.yml
23+
with:
24+
BRANCH: ${{ github.head_ref || github.ref }}
25+
secrets:
26+
URI: ${{ secrets.RELEASEOPS_AURA_PROFESSIONAL_5_URI }}
27+
PASSWORD: ${{ secrets.RELEASEOPS_AURA_PROFESSIONAL_5_PASSWORD }}
28+
concurrency: aura-professional-5

0 commit comments

Comments
 (0)