Skip to content
Merged
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
48 changes: 3 additions & 45 deletions .github/workflows/ci.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -3,14 +3,8 @@
# Runs on push to develop and on PRs targeting develop.
#
# Jobs:
# 1. quality — Install, lint, test & verify (tox), SonarCloud
# 2. trigger-staging-deploy — on push to develop only, triggers the
# Deploy ERSys Staging workflow on enity-resolution-ops via the
# GitHub workflow_dispatch API
#
# Required secrets:
# - SONAR_TOKEN: SonarCloud authentication token
# - CI_GH_TOKEN: org-level PAT for cross-repo workflow dispatch
# 1. quality — Install, lint, test & verify (tox)


name: CI

Expand Down Expand Up @@ -45,7 +39,7 @@ jobs:
# ------------------------------------------------------------------
- uses: actions/checkout@v6
with:
fetch-depth: 0 # Full history required for SonarCloud analysis
fetch-depth: 0

# ------------------------------------------------------------------
# Python & Poetry
Expand Down Expand Up @@ -99,39 +93,3 @@ jobs:
REDIS_HOST: localhost
REDIS_PORT: 6379
REDIS_PASSWORD: ""

# ------------------------------------------------------------------
# SonarCloud
# ------------------------------------------------------------------
- name: Check for SonarCloud Token
id: sonar_check
run: |
if [ -z "${{ secrets.SONAR_TOKEN }}" ]; then
echo "has_token=false" >> $GITHUB_OUTPUT
else
echo "has_token=true" >> $GITHUB_OUTPUT
fi

- name: SonarCloud scan
if: always() && steps.sonar_check.outputs.has_token == 'true'
uses: SonarSource/sonarqube-scan-action@v6
env:
SONAR_TOKEN: ${{ secrets.SONAR_TOKEN }}

trigger-staging-deploy:
name: Trigger staging deploy
needs: quality
if: github.event_name == 'push' && github.repository_owner == 'meaningfy-ws'
runs-on: ubuntu-latest
env:
OPS_REPO: meaningfy-ws/enity-resolution-ops
DEPLOY_WORKFLOW: deploy-staging.yml
DEPLOY_REF: develop
steps:
- name: Trigger deploy workflow on ops repo
run: |
curl -sf -X POST \
-H "Authorization: token ${{ secrets.CI_GH_TOKEN }}" \
-H "Accept: application/vnd.github.v3+json" \
"https://api.github.com/repos/${OPS_REPO}/actions/workflows/${DEPLOY_WORKFLOW}/dispatches" \
-d '{"ref":"${{ env.DEPLOY_REF }}","inputs":{"repo":"${{ github.repository }}","sha":"${{ github.sha }}"}}'
11 changes: 10 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -10,11 +10,20 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
## [Unreleased]


## [1.1.0-rc.6] - 2026-07-16

### Changed
* Disable logging of error traceback for controlled exceptions; the traceback logging is retained for uncontrolled exceptions (TEDSWS-529, TEDSWS-534)

### Removed
* SonarCloud integration, as it depended on contractor-specific configuration (TEDSWS-528).

Comment thread
gkostkowski marked this conversation as resolved.

## [1.0.0-rc.2] - 2026-06-30

### Changed
* ERSys installation instructions and related documentation improved (TEDSWS-520)
* Meaningfy-specific references removed from the source code repositories (TEDSWS-528)
* Contractor-specific references removed from the source code repositories (TEDSWS-528)


## [1.1.0-rc.4] - 2026-06-30
Expand Down
140 changes: 0 additions & 140 deletions sonar-project.properties

This file was deleted.

2 changes: 1 addition & 1 deletion src/VERSION
Original file line number Diff line number Diff line change
@@ -1 +1 @@
1.1.0-rc.4
1.1.0-rc.6
Loading