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 #1753

Merged
merged 2 commits into from
Jan 21, 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
2 changes: 1 addition & 1 deletion .github/workflows/analysis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -102,7 +102,7 @@ jobs:
token: SONAR_TOKEN_FRONTEND
triggers: ('frontend/')
steps:
- uses: bcgov-nr/[email protected]
- uses: bcgov/[email protected]
with:
commands: |
npm ci
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/deploy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -111,7 +111,7 @@ env:
package_tag: ${{ inputs.tag }}

jobs:
# https://github.com/bcgov-nr/action-deployer-openshift
# https://github.com/bcgov/action-deployer-openshift
deploys:
name: Helm
environment: ${{ inputs.environment }}
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/merge.yml
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ jobs:
- name: Get PR Number From Event
if: ${{ github.event_name == 'push' }}
id: pr_no
uses: bcgov-nr/[email protected]
uses: bcgov/[email protected]
- name: PR Number
id: pr
run: echo pr=${{ steps.pr_no.outputs.pr || inputs.pr}} >> $GITHUB_OUTPUT
Expand Down
10 changes: 5 additions & 5 deletions .github/workflows/pr-open.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ jobs:
pull-requests: write
timeout-minutes: 1
steps:
- uses: bcgov-nr/[email protected]
- uses: bcgov/[email protected]
with:
github_token: ${{ secrets.GITHUB_TOKEN }}
add_markdown: |
Expand Down Expand Up @@ -51,9 +51,9 @@ jobs:
steps:
- name: PR Number
id: pr
uses: bcgov-nr/[email protected]
uses: bcgov/[email protected]

# https://github.com/bcgov-nr/action-builder-ghcr
# https://github.com/bcgov/action-builder-ghcr
builds:
name: Builds
needs: [vars]
Expand All @@ -65,15 +65,15 @@ jobs:
package: [dops, vehicles, frontend, scheduler, policy]
timeout-minutes: 10
steps:
- uses: bcgov-nr/[email protected]
- uses: bcgov/[email protected]
with:
#keep_versions: 50
package: ${{ matrix.package }}
tag: ${{ needs.vars.outputs.pr }}
tag_fallback: latest
triggers: '${{ matrix.package }}/' #omit to build everything

# https://github.com/bcgov-nr/action-deployer-openshift
# https://github.com/bcgov/action-deployer-openshift
deploys-dev:
name: Deploys (Dev)
needs: [builds, vars]
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ jobs:
- name: Get PR Number From Event
if: ${{ github.event_name == 'release' }}
id: pr_no
uses: bcgov-nr/action-get-pr@main
uses: bcgov/action-get-pr@main
- name: PR Number
id: pr
run: echo pr=${{ steps.pr_no.outputs.pr || inputs.pr}} >> $GITHUB_OUTPUT
Expand Down
Loading