mirror of
https://github.com/fluencelabs/aquavm
synced 2025-03-15 20:40:50 +00:00
parent
4b176c7684
commit
dbb260a4a6
18
.github/workflows/e2e.yml
vendored
18
.github/workflows/e2e.yml
vendored
@ -7,12 +7,21 @@ on:
|
|||||||
- ".github/**"
|
- ".github/**"
|
||||||
- "!.github/workflows/e2e.yml"
|
- "!.github/workflows/e2e.yml"
|
||||||
- "!.github/workflows/e2e-label.yml"
|
- "!.github/workflows/e2e-label.yml"
|
||||||
- "!.github/workflows/snapshot.yml"
|
- "!.github/workflows/snapshot-*.yml"
|
||||||
types:
|
types:
|
||||||
- "labeled"
|
- "labeled"
|
||||||
- "synchronize"
|
- "synchronize"
|
||||||
- "opened"
|
- "opened"
|
||||||
- "reopened"
|
- "reopened"
|
||||||
|
push:
|
||||||
|
branches:
|
||||||
|
- "master"
|
||||||
|
paths-ignore:
|
||||||
|
- "**.md"
|
||||||
|
- ".github/**"
|
||||||
|
- "!.github/workflows/e2e.yml"
|
||||||
|
- "!.github/workflows/e2e-label.yml"
|
||||||
|
- "!.github/workflows/snapshot-*.yml"
|
||||||
|
|
||||||
concurrency:
|
concurrency:
|
||||||
group: "${{ github.workflow }}-${{ github.ref }}"
|
group: "${{ github.workflow }}-${{ github.ref }}"
|
||||||
@ -21,7 +30,12 @@ concurrency:
|
|||||||
jobs:
|
jobs:
|
||||||
air-interpreter-wasm:
|
air-interpreter-wasm:
|
||||||
name: "aquavm"
|
name: "aquavm"
|
||||||
if: github.event.pull_request.head.repo.fork != true && contains(github.event.pull_request.labels.*.name, 'e2e')
|
if: >
|
||||||
|
github.event_name == 'push' ||
|
||||||
|
(
|
||||||
|
contains(github.event.pull_request.labels.*.name, 'e2e') &&
|
||||||
|
!github.event.pull_request.head.repo.fork
|
||||||
|
)
|
||||||
uses: ./.github/workflows/snapshot-air-interpreter-wasm.yml
|
uses: ./.github/workflows/snapshot-air-interpreter-wasm.yml
|
||||||
with:
|
with:
|
||||||
ref: ${{ github.ref }}
|
ref: ${{ github.ref }}
|
||||||
|
Loading…
x
Reference in New Issue
Block a user