Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# Validates the AsyncAPI definition

name: AsyncAPI Validate
name: AsyncAPI

on:
push:
Expand All @@ -13,7 +13,7 @@ jobs:

steps:
- uses: actions/checkout@v3
- name: asyncapi-validate
- name: check asyncapi.yaml file
uses: WaleedAshraf/asyncapi-github-action@v0.0.10
with:
filepath: "./docs/user/reference/asyncapi.yaml"
17 changes: 17 additions & 0 deletions .github/workflows/backstage.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
name: Backstage

on:
push:
pull_request:

jobs:
validate:
if: github.event_name != 'pull_request' || github.event.pull_request.head.repo.full_name != github.repository
runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v3
- name: check catalog-info.yaml file
uses: RoadieHQ/backstage-entity-validator@v0.3.11
with:
path: "./catalog-info.yaml"
8 changes: 3 additions & 5 deletions .github/workflows/openapi.yml
Original file line number Diff line number Diff line change
@@ -1,17 +1,15 @@
name: Openapi
name: OpenAPI

on:
push:
pull_request:
schedule:
# Run weekly to check latest versions of dependencies
- cron: "0 8 * * WED"

env:
# The target python version, which must match the Dockerfile version
CONTAINER_PYTHON: "3.11"

jobs:
publish:
generate:
# pull requests are a duplicate of a branch push if within the same repo.
if: github.event_name != 'pull_request' || github.event.pull_request.head.repo.full_name != github.repository
runs-on: ubuntu-latest
Expand Down