Skip to content

Commit 6ba4b5c

Browse files
Merge branch 'master' into flow-docs
2 parents 57057b9 + 03990f9 commit 6ba4b5c

File tree

332 files changed

+10450
-1027
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

332 files changed

+10450
-1027
lines changed

.github/workflows/release-docs.yml

Lines changed: 9 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -52,9 +52,14 @@ jobs:
5252
set -euxo pipefail
5353
IFS='.' read -r MAJOR MINOR PATCH <<< "${{ env.CURRENT_VERSION }}"
5454
echo "Current version: MAJOR=$MAJOR, MINOR=$MINOR, PATCH=$PATCH"
55-
PATCH=$((PATCH+1))
55+
56+
# increment version if this is not a hotfix or keep the current version
57+
if [[ "${{ env.IS_HOTFIX }}" != "true" ]]; then
58+
PATCH=$((PATCH+1))
59+
echo "Version is auto incremented."
60+
fi
61+
5662
NEW_VERSION="${MAJOR}.${MINOR}.${PATCH}"
57-
echo "Version is auto incremented."
5863
fi
5964
6065
echo "New version: $NEW_VERSION"
@@ -79,8 +84,8 @@ jobs:
7984
hotfix_release_tag=${{ env.NEW_VERSION }}-hotfix-$next_hotfix_no
8085
echo "Hotfix release tag: $hotfix_release_tag"
8186
82-
# strip prepending 'v'
83-
NEW_VERSION=$(echo $hotfix_release_tag | sed 's/^v//')
87+
# set the new version to the hotfix version
88+
NEW_VERSION=$(echo $hotfix_release_tag)
8489
8590
echo "NEW_VERSION=$NEW_VERSION" >> $GITHUB_ENV
8691

.vale/styles/Microsoft/Acronyms.yml

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -64,3 +64,8 @@ exceptions:
6464
- XSS
6565
- YAML
6666
- ZIP
67+
- AI
68+
- OIDC
69+
- SAML
70+
- JWT
71+
- UTC

.vale/styles/Microsoft/FirstPerson.yml

Lines changed: 0 additions & 16 deletions
This file was deleted.

.vale/styles/Microsoft/HeadingAcronyms.yml

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -8,3 +8,9 @@ tokens:
88
exceptions:
99
- IP
1010
- SMS OTP
11+
- AI
12+
- SAML
13+
- OIDC
14+
- API
15+
- JWT
16+
- LDAP

.vale/styles/WSO2-IAM/SentenceStyleTitles.yml

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -29,3 +29,6 @@ exceptions:
2929
- WSO2 Identity Server
3030
- Python
3131
- API
32+
- OpenTelemetry
33+
- Datadog
34+
- Java

.vale/styles/config/ignore/words.txt

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -22,4 +22,8 @@ APIs
2222
middleware
2323
passwordless
2424
base_path
25+
mod_auth_openidc
2526
Guardio
27+
agentic
28+
OAuth
29+
Datadog

.vale/styles/write-good/TooWordy.yml

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,6 @@ tokens:
4848
- at this time
4949
- attain
5050
- attributable to
51-
- authorize
5251
- because of the fact that
5352
- belated
5453
- benefit from
Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
---
2+
template: templates/redoc.html
3+
---
4+
5+
<redoc spec-url="{{base_path}}/apis/organization-apis/restapis/role-management-v3.yaml" theme='{{redoc_theme}}'></redoc>

0 commit comments

Comments
 (0)