Skip to content
Merged

Dev #2261

Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
20 commits
Select commit Hold shift + click to select a range
047e03e
AB#32465 Refactor AI endpoint configuration management
jacobwillsmith Apr 8, 2026
3b1f28c
AB#32465 Update AI development configuration template
jacobwillsmith Apr 8, 2026
df9bb32
fix applicationbar cypress test
Apr 9, 2026
3ac2dea
AB#32491 address updates from portal
AndreGAot Apr 9, 2026
08b480f
AB#32491 sonarQube cleanup
AndreGAot Apr 10, 2026
42fb95d
AB#32465 fix sonar issues in endpoint path join
jacobwillsmith Apr 10, 2026
a5cbab8
feature/AB#32612 - hardening lists.cy.ts to account for slow report l…
Stephan-McColm Apr 10, 2026
dedecd3
AB#32491 abstract appropriate base classes and refactor cognitive com…
AndreGAot Apr 10, 2026
a67072b
Merge pull request #2251 from bcgov/feature/AB#32612-FixCypressApplic…
DarylTodosichuk Apr 10, 2026
dbbe6fa
Merge pull request #2242 from bcgov/feature/AB#32465-model-endpoint-c…
jacobwillsmith Apr 10, 2026
1edc72d
AB#32491 copilot suggestions
AndreGAot Apr 10, 2026
2d00449
Merge pull request #2252 from bcgov/feature/AB#32491-portal-address-u…
AndreGAot Apr 10, 2026
e958f5e
bugfix/AB#32600-FixFilterAsterix
JamesPasta Apr 10, 2026
284cfa7
Merge pull request #2256 from bcgov/bugfix/AB#32600-FixFilterAsterix
JamesPasta Apr 10, 2026
cf32934
bugfix/AB#31304-HideTinyButtonPanelonScroll
JamesPasta Apr 10, 2026
f1406aa
Merge pull request #2257 from bcgov/bugfix/AB#32600-FixFilterAsterix
JamesPasta Apr 10, 2026
b33e165
AB#32613 enable workflow_dispatch on main branch
DarylTodosichuk Apr 13, 2026
e5a6785
Merge pull request #2259 from bcgov/feature/AB#32613-sonarcloud-githu…
DarylTodosichuk Apr 13, 2026
60ae0c9
AB32613 Move read permissions from workflow level to individual job l…
DarylTodosichuk Apr 13, 2026
7cb3c33
Merge pull request #2260 from bcgov/feature/AB#32613-sonarcloud-githu…
DarylTodosichuk Apr 13, 2026
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
8 changes: 6 additions & 2 deletions .github/workflows/docker-build-dev.yml
Original file line number Diff line number Diff line change
@@ -1,6 +1,4 @@
name: Dev - Build & Push docker images
permissions:
contents: read

on:
push:
Expand Down Expand Up @@ -42,6 +40,8 @@ jobs:
Setup:
runs-on: ubuntu-latest
environment: dev
permissions:
contents: read
steps:
- name: Get variables
run: |
Expand All @@ -61,6 +61,8 @@ jobs:
needs: [Setup]
runs-on: ubuntu-latest
environment: dev
permissions:
contents: read
steps:
- name: Checkout repository
uses: actions/checkout@v6
Expand Down Expand Up @@ -111,6 +113,8 @@ jobs:
needs: [Setup,Branch,PushVariables]
runs-on: ubuntu-latest
environment: dev
permissions:
contents: read
steps:
- uses: actions/checkout@v6
- name: Build Docker images
Expand Down
8 changes: 6 additions & 2 deletions .github/workflows/docker-build-main.yml
Original file line number Diff line number Diff line change
@@ -1,6 +1,4 @@
name: Main - Build & Push docker images
permissions:
contents: read

on:
push:
Expand Down Expand Up @@ -42,6 +40,8 @@ jobs:
Setup:
runs-on: ubuntu-latest
environment: main
permissions:
contents: read
steps:
- name: Get variables
run: |
Expand All @@ -61,6 +61,8 @@ jobs:
needs: [Setup]
runs-on: ubuntu-latest
environment: main
permissions:
contents: read
steps:
- name: Checkout repository
uses: actions/checkout@v6
Expand Down Expand Up @@ -168,6 +170,8 @@ jobs:
needs: [Setup,Branch,GenerateTag,PushVariables]
runs-on: ubuntu-latest
environment: main
permissions:
contents: read
steps:
- uses: actions/checkout@v6
- name: Build Docker images
Expand Down
11 changes: 9 additions & 2 deletions .github/workflows/docker-build-test.yml
Original file line number Diff line number Diff line change
@@ -1,6 +1,4 @@
name: Test - Build & Push docker images
permissions:
contents: read

on:
push:
Expand Down Expand Up @@ -42,6 +40,8 @@ jobs:
Setup:
runs-on: ubuntu-latest
environment: test
permissions:
contents: read
steps:
- name: Get variables
run: |
Expand All @@ -61,6 +61,8 @@ jobs:
needs: [Setup]
runs-on: ubuntu-latest
environment: test
permissions:
contents: read
steps:
- name: Checkout repository
uses: actions/checkout@v6
Expand Down Expand Up @@ -89,6 +91,8 @@ jobs:
needs: [Setup,Branch]
runs-on: ubuntu-latest
environment: test
permissions:
contents: write
steps:
- name: Checkout repository
uses: actions/checkout@v6
Expand All @@ -114,6 +118,7 @@ jobs:
needs: [Setup,Branch,GenerateTag]
permissions:
actions: write
contents: read
runs-on: ubuntu-latest
environment: test
steps:
Expand Down Expand Up @@ -144,6 +149,8 @@ jobs:
needs: [Setup,Branch,GenerateTag,PushVariables]
runs-on: ubuntu-latest
environment: test
permissions:
contents: read
steps:
- uses: actions/checkout@v6
- name: Build Docker images
Expand Down
9 changes: 7 additions & 2 deletions .github/workflows/manual-trigger.yml
Original file line number Diff line number Diff line change
@@ -1,8 +1,6 @@
# This is a basic workflow that is manually triggered

name: Workflow - Run manual trigger
permissions:
contents: read

# Controls when the action will run. Workflow runs when manually triggered
on:
Expand Down Expand Up @@ -39,6 +37,8 @@ jobs:
Setup:
runs-on: ubuntu-latest
environment: ${{ inputs.name }}
permissions:
contents: read
steps:
- name: Get variables
run: |
Expand All @@ -57,6 +57,8 @@ jobs:
needs: [Setup]
runs-on: ubuntu-latest
environment: ${{ inputs.name }}
permissions:
contents: read
steps:
- name: Checkout repository
uses: actions/checkout@v6
Expand Down Expand Up @@ -86,6 +88,7 @@ jobs:
environment: ${{ inputs.name }}
permissions:
actions: write
contents: read
steps:
- name: Checkout repository
uses: actions/checkout@v6
Expand All @@ -106,6 +109,8 @@ jobs:
needs: [Setup,Branch,PushVariables]
runs-on: ubuntu-latest
environment: ${{ inputs.name }}
permissions:
contents: read
steps:
- uses: actions/checkout@v6
- name: Build Docker images
Expand Down
13 changes: 9 additions & 4 deletions .github/workflows/pr-check-dev-branch.yml
Original file line number Diff line number Diff line change
@@ -1,9 +1,5 @@
name: Dev - Branch Protection - CI & Unit Tests

permissions:
contents: read
pull-requests: write

on:
pull_request:
branches:
Expand All @@ -15,6 +11,8 @@ jobs:
# ---------------------------------------------------------------------
check-dev-branch:
runs-on: ubuntu-latest
permissions:
contents: read
outputs:
branch-allowed: ${{ steps.branch-check.outputs.allowed }}
steps:
Expand All @@ -41,6 +39,8 @@ jobs:
needs: check-dev-branch
if: needs.check-dev-branch.outputs.branch-allowed == 'true'
runs-on: ubuntu-latest
permissions:
contents: read
outputs:
matrix: ${{ steps.discover.outputs.matrix }}
steps:
Expand All @@ -60,6 +60,8 @@ jobs:
test-project:
needs: discover-test-projects
runs-on: ubuntu-latest
permissions:
contents: read

strategy:
fail-fast: false
Expand Down Expand Up @@ -96,6 +98,9 @@ jobs:
aggregate-results:
needs: test-project
runs-on: ubuntu-latest
permissions:
contents: read
pull-requests: write
steps:
- uses: actions/download-artifact@v4
with:
Expand Down
14 changes: 10 additions & 4 deletions .github/workflows/pr-check-main-branch.yml
Original file line number Diff line number Diff line change
@@ -1,8 +1,4 @@
name: Main - Branch Protection - CI & Unit Tests
permissions:
contents: read
pull-requests: write
issues: write

on:
pull_request:
Expand All @@ -15,6 +11,8 @@ jobs:
# ---------------------------------------------------------------------
check-main-branch:
runs-on: ubuntu-latest
permissions:
contents: read
outputs:
branch-allowed: ${{ steps.branch-check.outputs.allowed }}
steps:
Expand All @@ -37,6 +35,8 @@ jobs:
needs: check-main-branch
if: needs.check-main-branch.outputs.branch-allowed == 'true'
runs-on: ubuntu-latest
permissions:
contents: read
outputs:
matrix: ${{ steps.discover.outputs.matrix }}
steps:
Expand All @@ -56,6 +56,8 @@ jobs:
test-project:
needs: discover-test-projects
runs-on: ubuntu-latest
permissions:
contents: read

strategy:
fail-fast: false
Expand Down Expand Up @@ -92,6 +94,10 @@ jobs:
aggregate-results:
needs: test-project
runs-on: ubuntu-latest
permissions:
contents: read
pull-requests: write
issues: write
steps:
- uses: actions/download-artifact@v4
with:
Expand Down
14 changes: 10 additions & 4 deletions .github/workflows/pr-check-test-branch.yml
Original file line number Diff line number Diff line change
@@ -1,8 +1,4 @@
name: Test - Branch Protection - CI & Unit Tests
permissions:
contents: read
pull-requests: write
issues: write

on:
pull_request:
Expand All @@ -15,6 +11,8 @@ jobs:
# ---------------------------------------------------------------------
check-test-branch:
runs-on: ubuntu-latest
permissions:
contents: read
outputs:
branch-allowed: ${{ steps.branch-check.outputs.allowed }}
steps:
Expand All @@ -39,6 +37,8 @@ jobs:
needs: check-test-branch
if: needs.check-test-branch.outputs.branch-allowed == 'true'
runs-on: ubuntu-latest
permissions:
contents: read
outputs:
matrix: ${{ steps.discover.outputs.matrix }}
steps:
Expand All @@ -58,6 +58,8 @@ jobs:
test-project:
needs: discover-test-projects
runs-on: ubuntu-latest
permissions:
contents: read

strategy:
fail-fast: false
Expand Down Expand Up @@ -94,6 +96,10 @@ jobs:
aggregate-results:
needs: test-project
runs-on: ubuntu-latest
permissions:
contents: read
pull-requests: write
issues: write
steps:
- uses: actions/download-artifact@v4
with:
Expand Down
8 changes: 4 additions & 4 deletions .github/workflows/sonarsource-scan.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,12 +4,12 @@ on:
push:
branches:
- dev2
# - dev
# - test
# - main
- dev
- test
- main
# pull_request:
# types: [opened, synchronize, reopened]
# workflow_dispatch:
workflow_dispatch:

permissions:
contents: read
Expand Down
Loading
Loading