Skip to content

fernandomrtnz/gh-action-test

Use this GitHub action with your project
Add this Action to an existing workflow or create a new one
View on Marketplace

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

1 Commit
 
 
 
 
 
 

Repository files navigation

API Evolution Check Action

This GitHub Action checks for breaking changes in your API specifications by comparing the current branch's API specification file with the one in the main branch. It requires a file path to your OpenAPI specification file and an access token for the API Evolution Management Service.

Inputs

Name Description Required
file_path Path to the API specification file you want to compare Yes
access_token API Evolution Management Service access token Yes

Example

This example demonstrates how to use the action in a workflow:

name: API Evolution Check

on:
  push:
    branches:
      - main
      - '*' # This will match any branch

jobs:
  api_evolution_check:
    runs-on: ubuntu-latest

    steps:
    - name: Run API Evolution Check
      uses: fernandomrtnz/[email protected]
      with:
        file_path: openapi.yml
        access_token: ${{ secrets.APIEMS_ACCESS_TOKEN }}

About

No description, website, or topics provided.

Resources

Stars

Watchers

Forks

Packages

No packages published