batch-example/.gitea/workflows/develop -> build.yml

76 lines
3.1 KiB
YAML
Raw Normal View History

2023-10-21 22:07:10 +00:00
name: build-develop-branch
run-name: ${{ github.actor }} is learning GitHub Actions
on:
push:
branches:
2023-10-23 01:26:40 +00:00
- 'develop/**'
2023-10-21 22:07:10 +00:00
jobs:
build-branch:
runs-on: ubuntu-latest
steps:
# https://github.com/RouxAntoine/checkout/tree/v3.5.4
2023-10-22 10:36:20 +00:00
- uses: http://sigyl.com:3000/actions/checkout@v3.5.4
with:
token: ${{ secrets.BOT_TOKEN }}
2023-10-23 01:26:40 +00:00
fetch-depth: '10'
2023-10-22 10:36:20 +00:00
- uses: http://sigyl.com:3000/actions/setup-node@v3
2023-10-21 22:07:10 +00:00
with:
node-version: '20'
2023-10-22 10:36:20 +00:00
- uses: http://sigyl.com:3000/actions/batch2yaml@master
2023-10-21 22:07:10 +00:00
with:
action: xml
path: '.'
2023-10-21 22:13:52 +00:00
- name: get PR number
2023-10-21 22:19:30 +00:00
run: |
2023-10-22 02:09:31 +00:00
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 }}
2023-10-23 10:58:54 +00:00
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//[\"\'\`]/}"
2023-10-23 11:27:13 +00:00
echo ::set-env name=PR::$PR
2023-10-23 10:33:44 +00:00
rm ./tea
2023-10-23 01:26:40 +00:00
- run: git fetch
2023-10-21 22:07:10 +00:00
- name: get build branch name
run: |
firstString=${{ github.ref_name }}
2023-10-23 01:26:40 +00:00
secondString="build"
echo ::set-env name=BUILD_BRANCH::${firstString/develop\//"$secondString"\/}
2023-10-21 22:07:10 +00:00
- name: GIT commit and push all changed files
env:
CI_COMMIT_MESSAGE: Development branch built to xml.
2023-10-21 22:07:10 +00:00
CI_COMMIT_AUTHOR: Continuous Integration
run: |
git config --global user.name "${{ env.CI_COMMIT_AUTHOR }}"
git config --global user.email "username@users.noreply.github.com"
git add -A
2023-10-23 01:26:40 +00:00
git commit -a -m "${{ github.ref_name }} -> ${{ env.BUILD_BRANCH }} "
git checkout -b ${{ env.BUILD_BRANCH }}
git merge --squash ${{ github.ref_name }}
2023-10-23 11:21:56 +00:00
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 }}
2023-10-23 10:03:31 +00:00
else
echo 'no changes so no push'
fi;
2023-10-21 22:47:52 +00:00
- name: make pull request comment
2023-10-21 22:07:10 +00:00
run: |
curl https://dl.gitea.com/tea/0.9.2/tea-0.9.2-linux-386 --output tea
chmod +x ./tea
./tea c $PR "this branch has been built on [${{ env.BUILD_BRANCH }}](${{ github.serverUrl }}/${{ github.repository }}/src/branch/${{ env.BUILD_BRANCH }})"
2023-10-21 22:07:10 +00:00