Skip to content

👷 build(plugin): Add github action #6

👷 build(plugin): Add github action

👷 build(plugin): Add github action #6

Workflow file for this run

name: emptydirclone-e2e-tests
on:
push:
branches:
- 'main'
tags:
- 'v*'
pull_request:
branches:
- 'main'
workflow_dispatch:
workflow_run:
workflows: [emptydirclone-image-build-push]
types: [completed]
permissions:
packages: write
jobs:
on-success:
runs-on: ubuntu-latest
if: ${{ github.event.workflow_run.conclusion == 'success' }}
steps:
- run: echo 'The triggering workflow passed'
on-failure:
runs-on: ubuntu-latest
if: ${{ github.event.workflow_run.conclusion == 'failure' }}
steps:
- run: echo 'The triggering workflow failed'
e2e-tests:
runs-on: ubuntu-latest
steps:
- name: Dump GitHub context
env:
GITHUB_CONTEXT: ${{ toJson(github) }}
run: |
echo "$GITHUB_CONTEXT"
- name: Run E2E tests
run: echo "Hello, E2E"