[BUGFIX] Require at least PHP 8.2 instead of exactly PHP 8.2 #5
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
on: | |
push: | |
branches: [ "master" ] | |
tags: | |
- "*" | |
jobs: | |
label_issue: | |
runs-on: ubuntu-latest | |
env: | |
GITHUB_TOKEN: ${{ secrets.GH_PUSH_TOKEN }} | |
steps: | |
- uses: actions/checkout@v4 | |
- run: git config --unset-all http.https://github.com/.extraheader | |
- 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; |