-
Notifications
You must be signed in to change notification settings - Fork 0
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
1 parent
32e32ef
commit 4a10583
Showing
1 changed file
with
14 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,14 @@ | ||
on: | ||
push: | ||
branches: [ "master" ] | ||
tags: | ||
- "*" | ||
|
||
jobs: | ||
label_issue: | ||
runs-on: ubuntu-latest | ||
env: | ||
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | ||
steps: | ||
- uses: actions/checkout@v4 | ||
- run: for dir in packages/*; do git remote add ${dir##*/} https://__token__:[email protected]/vertexvaar/${dir##*/}.git; git fetch ${dir##*/}; git subtree split --prefix=packages/${dir##*/} -b main; git push --force ${dir##*/} main; git remote remove ${dir##*/}; git branch -D main; done; |