Skip to content

Commit

Permalink
ci: add global ci check (#1)
Browse files Browse the repository at this point in the history
  • Loading branch information
carlosthe19916 authored Aug 22, 2024
1 parent 96475dc commit 15c184f
Show file tree
Hide file tree
Showing 2 changed files with 32 additions and 0 deletions.
20 changes: 20 additions & 0 deletions .github/workflows/ci.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
name: CI (repo level)

on:
push:
branches:
- main
- "release-*"
pull_request:
branches:
- main
- "release-*"
workflow_dispatch:
workflow_call:

jobs:
test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v1
## TODO add any checks this repo might need like formating for instance
12 changes: 12 additions & 0 deletions .github/workflows/global-ci.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
name: Global CI

on: ["push", "pull_request"]

jobs:
e2e:
uses: trustification/trustify-ci/.github/workflows/global-ci.yml@main
with:
operator_bundle: "ghcr.io/trustification/trustify-operator-bundle:latest"
run_api_tests: true
run_ui_tests: false
api_tests_ref: ${{ github.event.number && format('refs/pull/{0}/merge', github.event.number) || '' }}

0 comments on commit 15c184f

Please sign in to comment.