Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions .github/CODEOWNERS
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
* @OutSystems/data-fabric-clients
21 changes: 21 additions & 0 deletions .github/ISSUE_TEMPLATE/PULL_REQUEST_TEMPLATE.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
<!--
You can check for more info about PR conventions here https://outsystemsrd.atlassian.net/wiki/spaces/RCP/pages/1544487638/Pull+Requests
Conventions: <jira-issue>: <subject>
<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
<subject> - a short and concise description of the changes, usually the summary of the jira issue
-->

### Jira Issue
<!-- Please change the <jira-issue> tag to your jira issue (ex: RAR-131) -->

[<jira-issue>](https://outsystemsrd.atlassian.net/browse/<jira-issue>)

### Context
<!--- Why is this change required? What problem does it solve? -->

### Impacts
<!-- What are the consequences of the changes and possible implications in clients -->
- [ ] Breaking Change
- [ ] Behavioral breaking change
- [ ] Refactor (big refactor on a sensitive asset )
- [ ] Requires revision on public documentation
55 changes: 0 additions & 55 deletions .github/ISSUE_TEMPLATE/bug.yaml

This file was deleted.

1 change: 0 additions & 1 deletion .github/ISSUE_TEMPLATE/config.yaml

This file was deleted.

29 changes: 0 additions & 29 deletions .github/ISSUE_TEMPLATE/feature-request.yaml

This file was deleted.

33 changes: 0 additions & 33 deletions .github/ISSUE_TEMPLATE/question.yaml

This file was deleted.

3 changes: 0 additions & 3 deletions .github/workflows/main-checks.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,9 +4,6 @@ on:
push:
branches:
- main
- "v*.*.*"
tags:
- "v*.*.*"

jobs:
checks:
Expand Down
82 changes: 0 additions & 82 deletions .github/workflows/publish-pypi.yml

This file was deleted.

10 changes: 4 additions & 6 deletions .github/workflows/shared.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ jobs:
enable-cache: true
version: 0.9.5
- name: Install dependencies
run: uv sync --frozen --all-extras --python 3.10
run: uv sync --frozen --all-extras --python 3.12

- uses: pre-commit/[email protected]
with:
Expand All @@ -35,7 +35,7 @@ jobs:
continue-on-error: true
strategy:
matrix:
python-version: ["3.10", "3.11", "3.12", "3.13"]
python-version: ["3.12", "3.13"]
dep-resolution:
- name: lowest-direct
install-flags: "--upgrade --resolution lowest-direct"
Expand All @@ -57,9 +57,7 @@ jobs:

- name: Run pytest with coverage
run: |
uv run --frozen --no-sync coverage run -m pytest
uv run --frozen --no-sync coverage combine
uv run --frozen --no-sync coverage report
make coverage

readme-snippets:
runs-on: ubuntu-latest
Expand All @@ -72,7 +70,7 @@ jobs:
version: 0.9.5

- name: Install dependencies
run: uv sync --frozen --all-extras --python 3.10
run: uv sync --frozen --all-extras --python 3.12

- name: Check README snippets are up to date
run: uv run --frozen scripts/update_readme_snippets.py --check
11 changes: 11 additions & 0 deletions .github/workflows/validate-pr-labels.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
name: Validate pull request labels

on:
pull_request:
types: [labeled, unlabeled, synchronize]

jobs:
check-label:
uses: OutSystems/rd.github-reusable-workflows/.github/workflows/validate-pr-labels.yaml@59bd1315cfd3558f93edff0a994430dab78812fa #v2.0.7
with:
validate-semVer: false
11 changes: 11 additions & 0 deletions .github/workflows/validate-pr-title.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
name: Validate pull request title

on:
pull_request:
types: [opened, edited, synchronize, reopened]

jobs:
build:
uses: OutSystems/rd.github-reusable-workflows/.github/workflows/validate-pr-title.yaml@59bd1315cfd3558f93edff0a994430dab78812fa
with:
validate-semVer: false
Loading
Loading