Skip to content

Commit 0b33909

Browse files
Update SCA workflow and enhance README with additional badges and documentation links
1 parent fbda0e0 commit 0b33909

3 files changed

Lines changed: 36 additions & 6 deletions

File tree

.github/workflows/sca_scan.yml

Lines changed: 10 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,9 +2,17 @@ name: SCA
22

33
on:
44
push:
5-
branches: ["master", "main"]
5+
branches: ["main"]
6+
pull_request:
7+
branches: ["main"]
68

79
jobs:
810
snyk-cli:
9-
uses: atko-security/devsecops-tooling/.github/workflows/sca-scan.yml@main
11+
uses: auth0/devsecops-tooling/.github/workflows/sca-scan.yml@main
12+
with:
13+
additional-arguments: "--exclude=README.md,.jfrog --skip-unresolved"
14+
python-version: "3.10"
15+
pre-scan-commands: |
16+
python3 -m venv venv --upgrade-deps
17+
./venv/bin/pip3 install -r requirements.txt
1018
secrets: inherit

README.md

Lines changed: 10 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,17 @@
1-
# Auth0 My Organization Python SDK
1+
![Python SDK for Auth0 MyOrganization](https://cdn.auth0.com/website/sdks/banners/myorganization-python-banner.png)
2+
3+
<div align="center">
24

3-
[![fern shield](https://img.shields.io/badge/%F0%9F%8C%BF-Built%20with%20Fern-brightgreen)](https://buildwithfern.com?utm_source=github&utm_medium=github&utm_campaign=readme&utm_source=https%3A%2F%2Fgithub.qkg1.top%2Fauth0%2Fmyorganization-python)
45
[![pypi](https://img.shields.io/pypi/v/myorganization-python)](https://pypi.python.org/pypi/myorganization-python)
56
[![License](https://img.shields.io/:license-Apache%202.0-blue.svg?style=flat)](https://www.apache.org/licenses/LICENSE-2.0)
7+
[![Build Status](https://img.shields.io/github/actions/workflow/status/auth0/myorganization-python/ci.yml?branch=main&style=flat-square)](https://github.com/auth0/myorganization-python/actions?query=branch%3Amain)
8+
[![fern shield](https://img.shields.io/badge/%F0%9F%8C%BF-Built%20with%20Fern-brightgreen)](https://buildwithfern.com?utm_source=github&utm_medium=github&utm_campaign=readme&utm_source=https%3A%2F%2Fgithub.qkg1.top%2Fauth0%2Fmyorganization-python)
9+
10+
📚 [Documentation](#documentation) • 🚀 [Getting Started](#getting-started) • 💬 [Feedback](#feedback)
11+
12+
</div>
613

7-
[Documentation](#documentation) - [Getting Started](#getting-started) - [API Reference](#api-reference) - [Feedback](#feedback)
14+
---
815

916
## Documentation
1017

src/auth0/__init__.py

Lines changed: 16 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,5 +2,20 @@
22

33
from . import myorganization
44
from auth0.myorganization.version import __version__
5+
from auth0.myorganization.types import (
6+
IdpOidcOptionsRequest,
7+
IdpOidcRequest,
8+
IdpOidcUpdateRequest,
9+
OrgBranding,
10+
OrgBrandingColors,
11+
)
512

6-
__all__ = ["myorganization", "__version__"]
13+
__all__ = [
14+
"myorganization",
15+
"__version__",
16+
"IdpOidcOptionsRequest",
17+
"IdpOidcRequest",
18+
"IdpOidcUpdateRequest",
19+
"OrgBranding",
20+
"OrgBrandingColors",
21+
]

0 commit comments

Comments
 (0)