├── .gitattributes ├── .github └── workflows │ └── test.yaml ├── .gitignore ├── LICENSE ├── README.md ├── breaking ├── Dockerfile ├── action.yml └── entrypoint.sh ├── changelog ├── Dockerfile ├── action.yml └── entrypoint.sh ├── diff ├── Dockerfile ├── action.yml └── entrypoint.sh └── specs ├── base-deprecation.yaml ├── base-exclude-elements.yaml ├── base.yaml ├── glob ├── base │ └── base.yaml └── revision │ └── revision-breaking.yaml ├── petstore-base.yaml ├── petstore-revision.yaml ├── revision-breaking-warn.yaml ├── revision-breaking.yaml └── revision.yaml /.gitattributes: -------------------------------------------------------------------------------- 1 | *.sh text eol=lf 2 | -------------------------------------------------------------------------------- /.github/workflows/test.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oasdiff/oasdiff-action/HEAD/.github/workflows/test.yaml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | .idea/* 2 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oasdiff/oasdiff-action/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oasdiff/oasdiff-action/HEAD/README.md -------------------------------------------------------------------------------- /breaking/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oasdiff/oasdiff-action/HEAD/breaking/Dockerfile -------------------------------------------------------------------------------- /breaking/action.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oasdiff/oasdiff-action/HEAD/breaking/action.yml -------------------------------------------------------------------------------- /breaking/entrypoint.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oasdiff/oasdiff-action/HEAD/breaking/entrypoint.sh -------------------------------------------------------------------------------- /changelog/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oasdiff/oasdiff-action/HEAD/changelog/Dockerfile -------------------------------------------------------------------------------- /changelog/action.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oasdiff/oasdiff-action/HEAD/changelog/action.yml -------------------------------------------------------------------------------- /changelog/entrypoint.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oasdiff/oasdiff-action/HEAD/changelog/entrypoint.sh -------------------------------------------------------------------------------- /diff/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oasdiff/oasdiff-action/HEAD/diff/Dockerfile -------------------------------------------------------------------------------- /diff/action.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oasdiff/oasdiff-action/HEAD/diff/action.yml -------------------------------------------------------------------------------- /diff/entrypoint.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oasdiff/oasdiff-action/HEAD/diff/entrypoint.sh -------------------------------------------------------------------------------- /specs/base-deprecation.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oasdiff/oasdiff-action/HEAD/specs/base-deprecation.yaml -------------------------------------------------------------------------------- /specs/base-exclude-elements.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oasdiff/oasdiff-action/HEAD/specs/base-exclude-elements.yaml -------------------------------------------------------------------------------- /specs/base.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oasdiff/oasdiff-action/HEAD/specs/base.yaml -------------------------------------------------------------------------------- /specs/glob/base/base.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oasdiff/oasdiff-action/HEAD/specs/glob/base/base.yaml -------------------------------------------------------------------------------- /specs/glob/revision/revision-breaking.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oasdiff/oasdiff-action/HEAD/specs/glob/revision/revision-breaking.yaml -------------------------------------------------------------------------------- /specs/petstore-base.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oasdiff/oasdiff-action/HEAD/specs/petstore-base.yaml -------------------------------------------------------------------------------- /specs/petstore-revision.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oasdiff/oasdiff-action/HEAD/specs/petstore-revision.yaml -------------------------------------------------------------------------------- /specs/revision-breaking-warn.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oasdiff/oasdiff-action/HEAD/specs/revision-breaking-warn.yaml -------------------------------------------------------------------------------- /specs/revision-breaking.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oasdiff/oasdiff-action/HEAD/specs/revision-breaking.yaml -------------------------------------------------------------------------------- /specs/revision.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oasdiff/oasdiff-action/HEAD/specs/revision.yaml --------------------------------------------------------------------------------