This repository has been archived by the owner on Sep 24, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Mark Steele
committed
Sep 20, 2024
1 parent
1cc8a83
commit 812d74c
Showing
1 changed file
with
28 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,28 @@ | ||
name: Migrate Repository | ||
|
||
on: | ||
workflow_dispatch: | ||
|
||
jobs: | ||
migrate: | ||
runs-on: [ubuntu-latest] | ||
steps: | ||
- name: Migrate Repo | ||
uses: achieve-3000/ghe-migration-scripts/migrate-repo@v1 | ||
with: | ||
source_repo: ${{ github.repository }} | ||
target_repo: "mcgrawhill-llc/a3k-diff-action" | ||
source_url: ${{ github.server_url }} | ||
source_token: ${{ secrets.CI_PAT }} | ||
target_token: ${{ secrets.GH_MIGRATION_TOKEN }} | ||
migrate-secrets: | ||
runs-on: [ ubuntu-latest ] | ||
steps: | ||
- name: Migrate Secrets | ||
uses: achieve-3000/ghe-migration-scripts/migrate-secrets@v1 | ||
with: | ||
source_repo: ${{ github.repository }} | ||
target_repo: "mcgrawhill-llc/a3k-diff-action" | ||
source_url: ${{ github.server_url}} | ||
source_token: ${{ secrets.CI_PAT }} | ||
target_token: ${{ secrets.GH_MIGRATION_TOKEN }} |