We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 90388df commit c20539bCopy full SHA for c20539b
2 files changed
.github/workflows/subsplit-packages.yml
@@ -48,6 +48,5 @@ jobs:
48
49
- name: Split Package
50
env:
51
- SUBSPLIT_TOKEN: ${{ secrets.ACCESS_TOKEN }}
52
- GH_TOKEN: ${{ secrets.GITHUB_TOKEN }}
+ GH_TOKEN: ${{ secrets.ACCESS_TOKEN }}
53
run: ./bin/split "${{ matrix.package.name }}"
bin/split
@@ -25,7 +25,7 @@ DEFAULT_BRANCH=$(git branch --show-current)
25
git filter-repo --subdirectory-filter "packages/${PACKAGE_NAME}"
26
27
# Setup our remote repository we are splitting to.
28
-git remote add origin "https://x-access-token:${SUBSPLIT_TOKEN}@github.com/${ORG_NAME}/${REPOSITORY_NAME}.git"
+git remote add origin "https://x-access-token:${GH_TOKEN}@github.com/${ORG_NAME}/${REPOSITORY_NAME}.git"
29
git branch -m "$DEFAULT_BRANCH"
30
31
# Push all branches + history to the repo.
0 commit comments