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

Switch Actions organization from ecmwf-actions to ecmwf #60

Merged
merged 1 commit into from
Mar 25, 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/cd.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,5 +7,5 @@ on:

jobs:
deploy:
uses: ecmwf-actions/reusable-workflows/.github/workflows/create-package.yml@v2
uses: ecmwf/reusable-workflows/.github/workflows/create-package.yml@v2
secrets: inherit
14 changes: 7 additions & 7 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ jobs:
downstream-ci:
name: downstream-ci
if: ${{ !github.event.pull_request.head.repo.fork && github.event.action != 'labeled' || github.event.label.name == 'approved-for-ci' }}
uses: ecmwf-actions/downstream-ci/.github/workflows/downstream-ci.yml@main
uses: ecmwf/downstream-ci/.github/workflows/downstream-ci.yml@main
with:
fckit: ecmwf/fckit@${{ github.event.pull_request.head.sha || github.sha }}
codecov_upload: true
Expand All @@ -40,10 +40,10 @@ jobs:
pull-requests: write
steps:
- name: Dispatch private downstream CI
uses: ecmwf-actions/dispatch-private-downstream-ci@v1
uses: ecmwf/dispatch-private-downstream-ci@v1
with:
token: ${{ secrets.GH_REPO_READ_TOKEN }}
owner: ecmwf-actions
owner: ecmwf
repository: private-downstream-ci
event_type: downstream-ci
payload: '{"fckit": "ecmwf/fckit@${{ github.event.pull_request.head.sha || github.sha }}"}'
Expand All @@ -52,7 +52,7 @@ jobs:
downstream-ci-hpc:
name: downstream-ci-hpc
if: ${{ !github.event.pull_request.head.repo.fork && github.event.action != 'labeled' || github.event.label.name == 'approved-for-ci' }}
uses: ecmwf-actions/downstream-ci/.github/workflows/downstream-ci-hpc.yml@main
uses: ecmwf/downstream-ci/.github/workflows/downstream-ci-hpc.yml@main
with:
fckit: ecmwf/fckit@${{ github.event.pull_request.head.sha || github.sha }}
secrets: inherit
Expand All @@ -67,10 +67,10 @@ jobs:
pull-requests: write
steps:
- name: Dispatch private downstream CI
uses: ecmwf-actions/dispatch-private-downstream-ci@v1
uses: ecmwf/dispatch-private-downstream-ci@v1
with:
token: ${{ secrets.GH_REPO_READ_TOKEN }}
owner: ecmwf-actions
owner: ecmwf
repository: private-downstream-ci
event_type: downstream-ci-hpc
payload: '{"fckit": "ecmwf/fckit@${{ github.event.pull_request.head.sha || github.sha }}"}'
Expand All @@ -85,7 +85,7 @@ jobs:
if: ${{ always() && !github.event.pull_request.head.repo.fork && github.event.action != 'labeled' || github.event.label.name == 'approved-for-ci' }}
steps:
- name: Trigger Teams notification
uses: ecmwf-actions/notify-teams@v1
uses: ecmwf/notify-teams@v1
with:
incoming_webhook: ${{ secrets.MS_TEAMS_INCOMING_WEBHOOK }}
needs_context: ${{ toJSON(needs) }}
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/label-public-pr.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,4 +7,4 @@ on:

jobs:
label:
uses: ecmwf-actions/reusable-workflows/.github/workflows/label-pr.yml@v2
uses: ecmwf/reusable-workflows/.github/workflows/label-pr.yml@v2
2 changes: 1 addition & 1 deletion .github/workflows/notify-new-issue.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,6 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Notify new issue
uses: ecmwf-actions/notify-teams-issue@v1
uses: ecmwf/notify-teams-issue@v1
with:
incoming_webhook: ${{ secrets.MS_TEAMS_INCOMING_WEBHOOK }}
2 changes: 1 addition & 1 deletion .github/workflows/notify-new-pr.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,6 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Notify new PR
uses: ecmwf-actions/notify-teams-pr@v1
uses: ecmwf/notify-teams-pr@v1
with:
incoming_webhook: ${{ secrets.MS_TEAMS_INCOMING_WEBHOOK }}
2 changes: 1 addition & 1 deletion .github/workflows/sync.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ jobs:
# It will correctly handle addition of any new and removal of existing Git objects.
sync:
name: sync
uses: ecmwf-actions/reusable-workflows/.github/workflows/sync.yml@v2
uses: ecmwf/reusable-workflows/.github/workflows/sync.yml@v2
secrets:
target_repository: ecsdk/fckit
target_username: ClonedDuck
Expand Down
Loading