Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

chore(ci): actions moved to bcgov org #1817

Merged
merged 1 commit into from
Jan 18, 2025
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
12 changes: 6 additions & 6 deletions .github/workflows/.deploy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -40,13 +40,13 @@ jobs:
steps:
# Check triggers (omitted or matched)
- name: Check core triggers
uses: bcgov-nr/[email protected]
uses: bcgov/[email protected]
id: check_core
with:
triggers: ('backend/' 'common/' 'database/' 'frontend/' 'oracle-api/')

- name: Check sync triggers
uses: bcgov-nr/[email protected]
uses: bcgov/[email protected]
id: check_sync
with:
triggers: ('common/' 'sync/')
Expand All @@ -70,7 +70,7 @@ jobs:

- name: OpenShift Init
if: steps.triggers.outputs.core == 'true' || steps.triggers.outputs.sync == 'true'
uses: bcgov-nr/[email protected]
uses: bcgov/[email protected]
with:
oc_namespace: ${{ vars.OC_NAMESPACE }}
oc_server: ${{ vars.OC_SERVER }}
Expand All @@ -92,7 +92,7 @@ jobs:

- name: Database
if: steps.triggers.outputs.core == 'true' || steps.triggers.outputs.sync == 'true'
uses: bcgov-nr/[email protected]
uses: bcgov/[email protected]
with:
oc_namespace: ${{ vars.OC_NAMESPACE }}
oc_server: ${{ vars.OC_SERVER }}
Expand Down Expand Up @@ -140,7 +140,7 @@ jobs:
verification_path: "actuator/health"

steps:
- uses: bcgov-nr/[email protected]
- uses: bcgov/[email protected]
id: deploys
with:
file: ${{ matrix.file }}
Expand All @@ -167,7 +167,7 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Deploy (sync)
uses: bcgov-nr/[email protected]
uses: bcgov/[email protected]
with:
file: sync/openshift.deploy.yml
oc_namespace: ${{ vars.OC_NAMESPACE }}
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/.tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ jobs:
runs-on: ubuntu-24.04
steps:
# Check triggers (omitted or matched)
- uses: bcgov-nr/[email protected]
- uses: bcgov/[email protected]
id: triggers
with:
triggers: ${{ inputs.triggers }}
Expand All @@ -44,7 +44,7 @@ jobs:

- name: Run Cypress CI
if: steps.triggers.outputs.triggered == 'true'
uses: bcgov-nr/[email protected]
uses: bcgov/[email protected]
with:
node_version: "18"
commands: |
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/analysis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ jobs:
name: Typescript lint
runs-on: ubuntu-24.04
steps:
- uses: bcgov-nr/[email protected]
- uses: bcgov/[email protected]
with:
commands: |
npm ci
Expand All @@ -39,7 +39,7 @@ jobs:
- dir: oracle-api
token: SONAR_ORACLE_API
steps:
- uses: bcgov-nr/[email protected]
- uses: bcgov/[email protected]
with:
commands: mvn --no-transfer-progress clean compile verify package checkstyle:checkstyle -P all-tests
dir: ${{ matrix.dir }}
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/merge.yml
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ jobs:
steps:
# Get PR number for squash merges to main
- id: pr
uses: bcgov-nr/[email protected]
uses: bcgov/[email protected]

deploys-test:
name: TEST Deploys (${{ needs.init.outputs.pr }})
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/pr-open.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ jobs:
matrix:
package: [backend, frontend, oracle-api, sync]
steps:
- uses: bcgov-nr/[email protected]
- uses: bcgov/[email protected]
id: build
with:
build_args: |
Expand Down
Loading