Compare commits

...

25 Commits

Author SHA1 Message Date
gilesb d609afdec0 ....
convert-to-yml / develop-branch (push) Successful in 37s Details
2023-10-23 13:56:51 +01:00
gilesb 1019cfb74c ....
convert-to-yml / develop-branch (push) Successful in 34s Details
2023-10-23 13:53:59 +01:00
gilesb 847cab6783 ...
convert-to-yml / develop-branch (push) Successful in 34s Details
2023-10-23 13:51:42 +01:00
gilesb 6b60cae14a ...
convert-to-yml / develop-branch (push) Successful in 33s Details
2023-10-23 13:45:53 +01:00
giles 1437031ab3 ...
convert-to-yml / develop-branch (push) Successful in 31s Details
2023-10-23 13:40:02 +01:00
giles 5ab4b8aaf0 ..............
convert-to-yml / develop-branch (push) Failing after 29s Details
2023-10-23 13:37:09 +01:00
giles eaf33dc0c7 ..............
convert-to-yml / develop-branch (push) Failing after 30s Details
2023-10-23 13:34:32 +01:00
giles 0fb5f909c4 ..............
convert-to-yml / develop-branch (push) Failing after 31s Details
2023-10-23 13:25:06 +01:00
giles 4098ae30d7 ..............
convert-to-yml / develop-branch (push) Failing after 31s Details
2023-10-23 13:23:32 +01:00
giles 80dca3a95c ...
convert-to-yml / develop-branch (push) Failing after 30s Details
2023-10-23 13:19:16 +01:00
giles ea31c24a7d showauthor
convert-to-yml / develop-branch (push) Successful in 35s Details
2023-10-23 13:09:55 +01:00
giles 1a50032b4d showauthor
convert-to-yml / develop-branch (push) Successful in 32s Details
2023-10-23 13:06:45 +01:00
giles 4d529b6c5f showauthor
convert-to-yml / develop-branch (push) Successful in 32s Details
2023-10-23 13:03:06 +01:00
giles 0e5d9e1eb8 showauthor
convert-to-yml / develop-branch (push) Successful in 31s Details
2023-10-23 13:00:51 +01:00
giles b0f8ee096c ...
convert-to-yml / develop-branch (push) Successful in 32s Details
2023-10-23 12:55:29 +01:00
giles 0bd03dd14b jjj
convert-to-yml / develop-branch (push) Successful in 32s Details
2023-10-23 12:53:18 +01:00
giles 1411a2f508 ..
convert-to-yml / develop-branch (push) Successful in 32s Details
2023-10-23 12:50:16 +01:00
giles 12cf88c07c ..
convert-to-yml / develop-branch (push) Failing after 31s Details
2023-10-23 12:48:49 +01:00
giles 3466441ad5 ..........
convert-to-yml / develop-branch (push) Failing after 26s Details
2023-10-23 12:47:10 +01:00
giles 78cc4cc0dd .
convert-to-yml / develop-branch (push) Successful in 30s Details
2023-10-23 12:38:32 +01:00
giles 984f57d053 ...
convert-to-yml / develop-branch (push) Successful in 31s Details
2023-10-23 12:30:00 +01:00
giles 442079f082 .....
convert-to-yml / develop-branch (push) Successful in 35s Details
2023-10-23 12:26:38 +01:00
giles 03eef70058 .....
convert-to-yml / develop-branch (push) Successful in 32s Details
2023-10-23 12:21:25 +01:00
giles fdfacb713d .....
convert-to-yml / develop-branch (push) Successful in 32s Details
2023-10-23 12:18:10 +01:00
giles ef69397ae4 .....
convert-to-yml / develop-branch (push) Successful in 31s Details
2023-10-23 12:16:51 +01:00
5 changed files with 77 additions and 30 deletions

View File

@ -17,8 +17,8 @@ jobs:
with:
node-version: '20'
- run: git fetch
- name: log
run: git log -10
- env: env
run: printenv
- uses: http://sigyl.com:3000/actions/batch2yaml@master
with:
action: yml
@ -28,40 +28,70 @@ jobs:
firstString=${{ github.ref_name }}
secondString="develop"
echo ::set-env name=DEVELOPMENT_BRANCH::${firstString/build\//"$secondString"\/}
- name: commit
env:
CI_COMMIT_MESSAGE: converted to yml for review.
CI_COMMIT_AUTHOR: Continuous Integration
- name: config
run: |
git config --global user.name "${{ github.actor }}"
git config --global user.email "${{ github.event.pusher.email }}"
- name: commit
run: |
git config --global user.name "${{ env.CI_COMMIT_AUTHOR }}"
git config --global user.email "username@users.noreply.github.com"
git add -A
git commit -a -m "${{ github.ref_name }} -> ${{ env.DEVELOPMENT_BRANCH }}"
- name: status
env:
CI_COMMIT_MESSAGE: converted to yml for review.
CI_COMMIT_AUTHOR: Continuous Integration
run: |
git branch -r
echo $(git branch -r | grep -Fx " origin/${{ env.DEVELOPMENT_BRANCH }}" | wc -c)
- name: diff
env:
CI_COMMIT_MESSAGE: converted to yml for review.
CI_COMMIT_AUTHOR: Continuous Integration
- name: push
run: |
if [[ $(git branch -r | grep -Fx " origin/${{ env.DEVELOPMENT_BRANCH }}" | wc -c) -eq 0 ]]; then
git clone ${{ github.serverUrl }}/${{ github.repository }} ../cloned
git -C ../cloned fetch origin #--depth=1
git -C ../cloned branch -r
git -C ../cloned checkout master || git -C ../cloned checkout -b master
mv ../cloned/.git ..
rm -rf ../cloned
cp -r . ../cloned
rm -rf ../cloned/.git
mv ../.git ../cloned
mv .git/config ../cloned/.git
rm -r ./*
rm -r .git
mv ../cloned/* .
mv ../cloned/.git .
git status
git checkout -b ${{ env.DEVELOPMENT_BRANCH }}
git add -A
git commit -a -m "${{ github.ref_name }} -> ${{ env.DEVELOPMENT_BRANCH }}"
echo no development branch so pushing
git push origin HEAD:${{ env.DEVELOPMENT_BRANCH }};
curl https://dl.gitea.com/tea/0.9.2/tea-0.9.2-linux-386 --output tea;
chmod +x ./tea;
./tea login add -n=this --url=${{ github.server_url}} -t=${{ secrets.BOT_TOKEN }};
if [[ $(./tea pr ls -f=base,head | grep "| master | ${{ env.DEVELOPMENT_BRANCH }} |" | head -c1 | wc -c) -eq 0 ]]; then
./tea pr c --base=master --head=${{ env.DEVELOPMENT_BRANCH }} --description="development pull request" -t="WIP: ${{ github.event.head_commit.message }}"
./tea pr c --base=master --head=${{ env.DEVELOPMENT_BRANCH }} --description="
development pull request
" -t="WIP: ${{ github.event.head_commit.message }}"
fi
echo 'pushed new branch and created pr';
else
if [[ $(git diff origin/${{ env.DEVELOPMENT_BRANCH }} | wc -c) -ne 0 ]]; then
git push -f origin HEAD:${{ env.DEVELOPMENT_BRANCH }};
if [[ $(git diff origin/${{ env.DEVELOPMENT_BRANCH }} | wc -c) -ne 0 ]]; then
git clone ${{ github.serverUrl }}/${{ github.repository }} ../cloned
git -C ../cloned fetch origin #--depth=1
git -C ../cloned branch -r
git -C ../cloned checkout $DEVELOPMENT_BRANCH || git -C ../cloned checkout -b $DEVELOPMENT_BRANCH
mv ../cloned/.git ..
rm -rf ../cloned
cp -r . ../cloned
rm -rf ../cloned/.git
mv ../.git ../cloned
mv .git/config ../cloned/.git
rm -r ./*
rm -r .git
mv ../cloned/* .
mv ../cloned/.git .
git status
git add -A
git commit -a -m "${{ github.ref_name }} -> ${{ env.DEVELOPMENT_BRANCH }}"
git push origin HEAD:${{ env.DEVELOPMENT_BRANCH }};
else
echo 'no changes so no push'
fi;

View File

@ -13,6 +13,8 @@ jobs:
with:
token: ${{ secrets.BOT_TOKEN }}
fetch-depth: '10'
- env: env
run: printenv
- uses: http://sigyl.com:3000/actions/setup-node@v3
with:
node-version: '20'
@ -27,26 +29,43 @@ jobs:
./tea login add -n=this --url=${{ github.server_url}} -t=${{ secrets.BOT_TOKEN }}
pr=$(./tea pr ls -f=base,head,index -o csv | grep "\"master\",\"${{ github.ref_name }}\"" | tr -d ' ' | tr "," "\n" | head -n 4 | tail -1)
export PR="${pr//[\"\'\`]/}"
echo ::set-env name=PR::$PR
rm ./tea
- run: git fetch
- name: config
run: |
git config --global user.name "${{ github.actor }}"
git config --global user.email "${{ github.event.pusher.email }}"
- name: get build branch name
run: |
firstString=${{ github.ref_name }}
secondString="build"
echo ::set-env name=BUILD_BRANCH::${firstString/develop\//"$secondString"\/}
- name: GIT commit and push all changed files
env:
CI_COMMIT_MESSAGE: Development branch built to xml.
CI_COMMIT_AUTHOR: Continuous Integration
- name: push
run: |
git config --global user.name "${{ env.CI_COMMIT_AUTHOR }}"
git config --global user.email "username@users.noreply.github.com"
git add -A
git commit -a -m "${{ github.ref_name }} -> ${{ env.BUILD_BRANCH }} "
git checkout -b ${{ env.BUILD_BRANCH }}
git merge --squash ${{ github.ref_name }}
if [[ $(git diff origin/${{ env.BUILD_BRANCH }} | wc -c) -ne 0 ]]; then
git push -f origin HEAD:${{ env.BUILD_BRANCH }}
if [[ $(git diff origin/${{ env.BUILD_BRANCH }} | wc -c) -ne 0 ]]; then
git clone ${{ github.serverUrl }}/${{ github.repository }} ../cloned
git -C ../cloned fetch origin #--depth=1
git -C ../cloned branch -r
git -C ../cloned checkout $BUILD_BRANCH || git -C ../cloned checkout -b $BUILD_BRANCH
mv ../cloned/.git ..
rm -rf ../cloned
cp -r . ../cloned
rm -rf ../cloned/.git
mv ../.git ../cloned
mv .git/config ../cloned/.git
rm -r ./*
rm -r .git
mv ../cloned/* .
mv ../cloned/.git .
git status
git add -A
git commit -a -m "${{ github.ref_name }} -> ${{ env.BUILD_BRANCH }} "
git push origin HEAD:${{ env.BUILD_BRANCH }}
else
echo 'no changes so no push'
fi;

View File

@ -4,6 +4,7 @@ on:
pull_request:
types:
- closed
- deleted
branches:
- 'master'

View File

@ -26,9 +26,6 @@ push from development to format branch
on format-branch pull, xml -> yml, push to product-development and PR
### FTBatch development pc on development branch
```sh

File diff suppressed because one or more lines are too long