Skip to content

Commit 4747a48

Browse files
committed
Initial commit
1 parent a9b3bb8 commit 4747a48

29 files changed

Lines changed: 293 additions & 2176 deletions

.coderabbit.yaml

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

.env.sample

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

.github/CODEOWNERS

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
* @softwareone-platform/sirius
1+
* @softwareone-platform/support

.github/copilot-instructions.md

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

.github/workflows/pr-build-merge.yml

Lines changed: 11 additions & 21 deletions
Original file line numberDiff line numberDiff line change
@@ -13,31 +13,21 @@ permissions:
1313

1414
jobs:
1515
build:
16-
1716
runs-on: ubuntu-latest
1817
timeout-minutes: 10
1918

2019
steps:
21-
- name: "Checkout"
22-
uses: actions/checkout@v6
23-
with:
24-
fetch-depth: 0
25-
26-
- name: "Create environment file"
27-
run: touch .env
28-
29-
- name: "Build test containers"
30-
run: make build
20+
- name: "Checkout"
21+
uses: actions/checkout@v6
22+
with:
23+
fetch-depth: 0
3124

32-
- name: "Run validation & test"
33-
run: make check-all
25+
- name: "Build test containers"
26+
run: make build
3427

35-
- name: "Run SonarCloud Scan"
36-
uses: SonarSource/sonarqube-scan-action@master
37-
env:
38-
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
39-
SONAR_TOKEN: ${{ secrets.SONAR_TOKEN }}
28+
- name: "Run validation & test"
29+
run: make check-all
4030

41-
- name: "Stop containers"
42-
if: always()
43-
run: make down
31+
- name: "Stop containers"
32+
if: always()
33+
run: make down

.github/workflows/release.yml

Lines changed: 19 additions & 20 deletions
Original file line numberDiff line numberDiff line change
@@ -9,33 +9,32 @@ permissions:
99

1010
jobs:
1111
build:
12-
1312
runs-on: ubuntu-latest
1413
timeout-minutes: 10
1514

1615
steps:
17-
- name: "Checkout"
18-
uses: actions/checkout@v6
19-
with:
20-
fetch-depth: 0
21-
22-
- name: "Get the version"
23-
id: get_version
24-
run: echo "VERSION=${GITHUB_REF/refs\/tags\//}" >> "$GITHUB_OUTPUT"
25-
26-
- name: "Build and push image"
27-
uses: azure/docker-login@v2
28-
with:
29-
login-server: ${{ secrets.REGISTRY_LOGIN_SERVER }}
30-
username: ${{ secrets.REGISTRY_USERNAME }}
31-
password: ${{ secrets.REGISTRY_PASSWORD }}
32-
- run: |
33-
docker build --target prod -t ${{ secrets.REGISTRY_LOGIN_SERVER }}/swo-extensions-playground:${{ steps.get_version.outputs.VERSION }} .
34-
docker push ${{ secrets.REGISTRY_LOGIN_SERVER }}/swo-extensions-playground:${{ steps.get_version.outputs.VERSION }}
16+
- name: "Checkout"
17+
uses: actions/checkout@v6
18+
with:
19+
fetch-depth: 0
20+
21+
- name: "Get the version"
22+
id: get_version
23+
run: echo "VERSION=${GITHUB_REF/refs\/tags\//}" >> "$GITHUB_OUTPUT"
24+
25+
- name: "Build and push image"
26+
uses: azure/docker-login@v2
27+
with:
28+
login-server: ${{ secrets.REGISTRY_LOGIN_SERVER }}
29+
username: ${{ secrets.REGISTRY_USERNAME }}
30+
password: ${{ secrets.REGISTRY_PASSWORD }}
31+
- run: |
32+
docker build --target prod -t ${{ secrets.REGISTRY_LOGIN_SERVER }}/mpt-cli-techsupport-plugin:${{ steps.get_version.outputs.VERSION }} .
33+
docker push ${{ secrets.REGISTRY_LOGIN_SERVER }}/mpt-cli-techsupport-plugin:${{ steps.get_version.outputs.VERSION }}
3534
3635
dtrack:
3736
uses: softwareone-platform/ops-template/.github/workflows/dependency-track-python-uv.yml@v2
3837
with:
39-
projectName: 'swo-extension-playground'
38+
projectName: "mpt-cli-techsupport-plugin"
4039
secrets:
4140
DEPENDENCYTRACK_APIKEY: ${{ secrets.DEPENDENCYTRACK_APIKEY }}

0 commit comments

Comments
 (0)