Skip to content

Commit 9579af3

Browse files
Merge c353ebf into 5983a65
2 parents 5983a65 + c353ebf commit 9579af3

20 files changed

+196
-463
lines changed

.github/CODEOWNERS

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
* @OutSystems/data-fabric-clients
Lines changed: 22 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,22 @@
1+
<!--
2+
You can check for more info about PR conventions here https://outsystemsrd.atlassian.net/wiki/spaces/RCP/pages/1544487638/Pull+Requests
3+
Conventions: <jira-issue>: <subject>
4+
<jira-issue> - Issue id, eg: RSAT-0000 (no need for # as in svn). This will link the branch and later on the pull request to the issue id in Jira
5+
<subject> - a short and concise description of the changes, usually the summary of the jira issue
6+
-->
7+
8+
### Jira Issue
9+
<!-- Please change the <jira-issue> tag to your jira issue (ex: RAR-131) -->
10+
11+
[<jira-issue>](https://outsystemsrd.atlassian.net/browse/<jira-issue>)
12+
13+
### Context
14+
<!--- Why is this change required? What problem does it solve? -->
15+
16+
### Impacts
17+
<!-- What are the consequences of the changes and possible implications in clients -->
18+
- [ ] Breaking Change
19+
- [ ] Behavioral breaking change
20+
- [ ] Breaks existent APIs
21+
- [ ] Refactor (big refactor on a sensitive asset )
22+
- [ ] Requires revision on public documentation

.github/ISSUE_TEMPLATE/bug.yaml

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

.github/ISSUE_TEMPLATE/config.yaml

Lines changed: 0 additions & 1 deletion
This file was deleted.

.github/ISSUE_TEMPLATE/feature-request.yaml

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

.github/ISSUE_TEMPLATE/question.yaml

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

.github/workflows/publish-pypi.yml

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

.github/workflows/shared.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ jobs:
2020
enable-cache: true
2121
version: 0.9.5
2222
- name: Install dependencies
23-
run: uv sync --frozen --all-extras --python 3.10
23+
run: uv sync --frozen --all-extras --python 3.12
2424

2525
- uses: pre-commit/action@v3.0.1
2626
with:
@@ -35,7 +35,7 @@ jobs:
3535
continue-on-error: true
3636
strategy:
3737
matrix:
38-
python-version: ["3.10", "3.11", "3.12", "3.13"]
38+
python-version: ["3.12", "3.13"]
3939
dep-resolution:
4040
- name: lowest-direct
4141
install-flags: "--upgrade --resolution lowest-direct"
@@ -72,7 +72,7 @@ jobs:
7272
version: 0.9.5
7373

7474
- name: Install dependencies
75-
run: uv sync --frozen --all-extras --python 3.10
75+
run: uv sync --frozen --all-extras --python 3.12
7676

7777
- name: Check README snippets are up to date
7878
run: uv run --frozen scripts/update_readme_snippets.py --check
Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
name: Validate pull request labels
2+
3+
4+
on:
5+
pull_request:
6+
types: [labeled, unlabeled, synchronize]
7+
8+
9+
jobs:
10+
check-label:
11+
uses: OutSystems/rd.github-reusable-workflows/.github/workflows/validate-pr-labels.yaml@v1.0.0
Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
name: Validate pull request title
2+
3+
4+
on:
5+
pull_request:
6+
types: [opened, edited, synchronize, reopened]
7+
8+
9+
jobs:
10+
build:
11+
uses: OutSystems/rd.github-reusable-workflows/.github/workflows/validate-pr-title.yaml@v1.0.0

0 commit comments

Comments
 (0)