Compare commits

..

10 Commits

Author SHA1 Message Date
giles f4e94761ad ....................
convert-to-yml / develop-branch (push) Successful in 31s Details
2023-10-22 20:09:43 +01:00
giles f450dd86e8 ....
convert-to-yml / develop-branch (push) Successful in 28s Details
2023-10-22 19:55:04 +01:00
giles 076daf76b5 ....
convert-to-yml / develop-branch (push) Successful in 30s Details
2023-10-22 19:53:39 +01:00
giles 6d62ba48e9 ....
convert-to-yml / develop-branch (push) Successful in 39s Details
2023-10-22 19:51:22 +01:00
giles 8230f0230d .... 2023-10-22 19:48:11 +01:00
giles f69c77282b ooooo 2023-10-22 19:45:36 +01:00
giles fe1fc6ff35 llllllllllllllllll 2023-10-22 19:37:36 +01:00
giles 2635e0ffac ........
convert-to-yml / develop-branch (push) Successful in 40s Details
2023-10-22 19:13:56 +01:00
giles 66925a9eb0 ........
convert-to-yml / develop-branch (push) Successful in 39s Details
2023-10-22 19:09:11 +01:00
giles d8bc024068 ........
convert-to-yml / develop-branch (push) Successful in 40s Details
2023-10-22 19:01:53 +01:00
4 changed files with 34 additions and 73 deletions

View File

@ -2,13 +2,16 @@ name: build-develop-branch
run-name: ${{ github.actor }} is learning GitHub Actions run-name: ${{ github.actor }} is learning GitHub Actions
on: on:
push: push:
branches:
- 'develop-**'
jobs: jobs:
build-branch: build-branch:
if: ${{ startsWith(github.ref_name, 'develop-') }}
runs-on: ubuntu-latest runs-on: ubuntu-latest
steps: steps:
# https://github.com/RouxAntoine/checkout/tree/v3.5.4 # https://github.com/RouxAntoine/checkout/tree/v3.5.4
- uses: http://sigyl.com:3000/actions/checkout@v3.5.4 - uses: http://sigyl.com:3000/actions/checkout@v3.5.4
with:
token: ${{ secrets.BOT_TOKEN }}
- uses: http://sigyl.com:3000/actions/setup-node@v3 - uses: http://sigyl.com:3000/actions/setup-node@v3
with: with:
node-version: '20' node-version: '20'
@ -37,12 +40,12 @@ jobs:
git config --global user.email "username@users.noreply.github.com" git config --global user.email "username@users.noreply.github.com"
git checkout -b ${{ env.BUILD_BRANCH }} git checkout -b ${{ env.BUILD_BRANCH }}
git add -A git add -A
git commit -a -m "${{ env.CI_COMMIT_MESSAGE }} ym files converted to xml" git commit -a -m "${{ env.CI_COMMIT_MESSAGE }} yml files converted to xml"
git push -f origin HEAD:${{ env.BUILD_BRANCH }} git push -f origin HEAD:${{ env.BUILD_BRANCH }}
- name: make pull request comment - name: make pull request comment
run: | run: |
curl https://dl.gitea.com/tea/0.9.2/tea-0.9.2-linux-386 --output tea curl https://dl.gitea.com/tea/0.9.2/tea-0.9.2-linux-386 --output tea
chmod +x ./tea chmod +x ./tea
./tea c $PR "ohhhh i see!!!" ./tea c $PR "this branch has been built on [${{ env.BUILD_BRANCH }}](${{ github.serverUrl }}/${{ github.repository }}/src/branch/${{ env.BUILD_BRANCH }})"

View File

@ -9,6 +9,8 @@ jobs:
runs-on: ubuntu-latest runs-on: ubuntu-latest
steps: steps:
- uses: http://sigyl.com:3000/actions/checkout@v3.5.4 - uses: http://sigyl.com:3000/actions/checkout@v3.5.4
with:
token: ${{ secrets.BOT_TOKEN }}
- name: ls - name: ls
run: ls run: ls
- uses: actions/setup-node@v3 - uses: actions/setup-node@v3
@ -28,4 +30,4 @@ jobs:
git config --global user.email "username@users.noreply.github.com" git config --global user.email "username@users.noreply.github.com"
git add -A git add -A
git commit -a -m "${{ env.CI_COMMIT_MESSAGE }} yml files converted to xml" git commit -a -m "${{ env.CI_COMMIT_MESSAGE }} yml files converted to xml"
-f origin HEAD:refs/heads/deployed-${{ github.ref_name }} git push -f origin HEAD:refs/heads/deployed-${{ github.ref_name }}

View File

@ -6,11 +6,12 @@ on:
- 'format-**' - 'format-**'
jobs: jobs:
develop-branch: develop-branch:
if: ${{ startsWith(github.ref_name, 'format-') }}
runs-on: ubuntu-latest runs-on: ubuntu-latest
steps: steps:
# https://github.com/RouxAntoine/checkout/tree/v3.5.4 # https://github.com/RouxAntoine/checkout/tree/v3.5.4
- uses: http://sigyl.com:3000/actions/checkout@v3.5.4 - uses: http://sigyl.com:3000/actions/checkout@v3.5.4
with:
token: ${{ secrets.BOT_TOKEN }}
- uses: http://sigyl.com:3000/actions/setup-node@v3 - uses: http://sigyl.com:3000/actions/setup-node@v3
with: with:
node-version: '20' node-version: '20'
@ -80,38 +81,3 @@ jobs:
./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 fi
rm ./tea rm ./tea
- uses: http://sigyl.com:3000/actions/batch2yaml@master
name: back to xml
with:
action: xml
path: '.'
- name: get PR number
run: |
curl https://dl.gitea.com/tea/0.9.2/tea-0.9.2-linux-386 --output tea
chmod +x ./tea
echo ::set-env name=PR::$(./tea pr ls -f=base,head,index | grep "| master | ${{ env.DEVELOPMENT_BRANCH }} |" | tr -d ' ' | tr "|" "\n" | head -n 4 | tail -1)
echo $PR
rm ./tea
- name: get build branch name
run: |
firstString=${{ github.ref_name }}
secondString="build-"
echo ::set-env name=BUILD_BRANCH::${firstString/format-/"$secondString"}
- name: GIT commit and push all changes
env:
CI_COMMIT_MESSAGE: Continuous Integration Build Artifacts
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 checkout -b ${{ env.BUILD_BRANCH }}
git add -A
git commit -a -m "${{ env.CI_COMMIT_MESSAGE }} ym files converted to xml"
git push -f origin HEAD:${{ env.BUILD_BRANCH }}
- name: make pull request comment
run: |
curl https://dl.gitea.com/tea/0.9.2/tea-0.9.2-linux-386 --output tea
chmod +x ./tea
./tea c $PR "ohhhh i see!!!"

View File

@ -6,19 +6,12 @@ on:
- closed - closed
jobs: jobs:
if_merged: delete:
if: github.event.pull_request.merged == true
runs-on: ubuntu-latest runs-on: ubuntu-latest
steps: steps:
- uses: http://sigyl.com:3000/actions/checkout@v3.5.4 - uses: http://sigyl.com:3000/actions/checkout@v3.5.4
- name: on-merge with:
run: | token: ${{ secrets.BOT_TOKEN }}
echo The PR was merged into ${{ github.event.pull_request.base.ref }} from ${{ github.ref_name }} from ${{ github.ref }} type ${{ github.ref_type }}
echo head ref : ${{ github.event.pull_request.head.ref }}
echo base_ref : ${{ github.base_ref }}
echo head_ref : ${{ github.head_ref }}
echo env: ${{ env.GITHUB_HEAD_REF }}
echo env: ${{ env.GITHUB_BASE_REF }}
- name: delete develop branch - name: delete develop branch
id: delete_develop_branch id: delete_develop_branch
run: git push origin --delete ${{ github.head_ref }} run: git push origin --delete ${{ github.head_ref }}
@ -33,27 +26,24 @@ jobs:
firstString=${{ github.head_ref }} firstString=${{ github.head_ref }}
secondString="build-" secondString="build-"
echo ::set-env name=BUILD_BRANCH::${firstString/develop-/"$secondString"} echo ::set-env name=BUILD_BRANCH::${firstString/develop-/"$secondString"}
- name: delete build branch if_merged:
id: delete_build_branch if: github.event.pull_request.merged == true
run: git push origin --delete ${{ env.BUILD_BRANCH }} runs-on: ubuntu-latest
steps:
- uses: http://sigyl.com:3000/actions/checkout@v3.5.4
with:
token: ${{ secrets.BOT_TOKEN }}
- name: delete develop branch
id: delete_develop_branch
run: git push origin --delete ${{ github.head_ref }}
continue-on-error: true continue-on-error: true
- uses: mainmatter/continue-on-error-comment@v1 - uses: mainmatter/continue-on-error-comment@v1
with: with:
repo-token: ${{ github.token }} repo-token: ${{ github.token }}
outcome: ${{ steps.delete_build_branch.outcome }} outcome: ${{ steps.delete_develop_branch.outcome }}
test-id: Error code ${{ matrix.code }} test-id: Error code ${{ matrix.code }}
- name: get build format branch name - name: get build branch name
run: | run: |
firstString=${{ github.head_ref }} firstString=${{ github.head_ref }}
secondString="format-" secondString="build-"
echo ::set-env name=FORMAT_BRANCH::${firstString/develop-/"$secondString"} echo ::set-env name=BUILD_BRANCH::${firstString/develop-/"$secondString"}
- name: delete format branch
id: delete_format_branch
run: git push origin --delete ${{ env.FORMAT_BRANCH }}
continue-on-error: true
- uses: mainmatter/continue-on-error-comment@v1
with:
repo-token: ${{ github.token }}
outcome: ${{ steps.delete_format_branch.outcome }}
test-id: Error code ${{ matrix.code }}