diff --git a/.gitea/workflows/build->develop.myml b/.gitea/workflows/build->develop.myml new file mode 100644 index 0000000..7e2622c --- /dev/null +++ b/.gitea/workflows/build->develop.myml @@ -0,0 +1,42 @@ +name: convert-to-yml +run-name: ${{ github.actor }} is learning GitHub Actions +on: + push: + branches: + - 'build/**' +jobs: + develop-branch: + runs-on: ubuntu-latest + steps: + # https://github.com/RouxAntoine/checkout/tree/v3.5.4 + - uses: http://sigyl.com:3000/actions/checkout@v3.5.4 + with: + token: ${{ secrets.BOT_TOKEN }} + fetch-depth: '10' + - uses: http://sigyl.com:3000/actions/setup-node@v3 + with: + node-version: '20' + - run: git fetch + - name: log + run: git log -10 + - uses: http://sigyl.com:3000/actions/batch2yaml@master + with: + action: yml + path: '.' + - name: get development branch name + run: | + firstString=${{ github.ref_name }} + secondString="develop" + echo ::set-env name=DEVELOPMENT_BRANCH::${firstString/build\//"$secondString"\/} + - name: GIT commit and push all changed files + env: + CI_COMMIT_MESSAGE: converted to yml for review. + 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 + git commit -a -m "${{ github.ref_name }} -> ${{ env.DEVELOPMENT_BRANCH }} " + git checkout -b ${{ env.DEVELOPMENT_BRANCH }} + git merge --squash ${{ github.ref_name }} + git push origin HEAD:${{ env.DEVELOPMENT_BRANCH }} diff --git a/.gitea/workflows/build-develop-branch.yml b/.gitea/workflows/develop -> build.yml similarity index 85% rename from .gitea/workflows/build-develop-branch.yml rename to .gitea/workflows/develop -> build.yml index 98515fc..ac2097a 100644 --- a/.gitea/workflows/build-develop-branch.yml +++ b/.gitea/workflows/develop -> build.yml @@ -3,7 +3,7 @@ run-name: ${{ github.actor }} is learning GitHub Actions on: push: branches: - - 'develop-**' + - 'develop/**' jobs: build-branch: runs-on: ubuntu-latest @@ -12,6 +12,7 @@ jobs: - uses: http://sigyl.com:3000/actions/checkout@v3.5.4 with: token: ${{ secrets.BOT_TOKEN }} + fetch-depth: '10' - uses: http://sigyl.com:3000/actions/setup-node@v3 with: node-version: '20' @@ -24,13 +25,16 @@ jobs: 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 }} + ./tea pr ls -f=base,head,index echo ::set-env name=PR::$(./tea pr ls -f=base,head,index | grep "| master | ${{ github.ref_name }} |" | tr -d ' ' | tr "|" "\n" | head -n 4 | tail -1) rm ./tea + echo PR: $PR + - run: git fetch - name: get build branch name run: | firstString=${{ github.ref_name }} - secondString="build-" - echo ::set-env name=BUILD_BRANCH::${firstString/develop-/"$secondString"} + 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. @@ -38,9 +42,10 @@ jobs: 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 }} yml files converted to xml" + git commit -a -m "${{ github.ref_name }} -> ${{ env.BUILD_BRANCH }} " + git checkout -b ${{ env.BUILD_BRANCH }} + git merge --squash ${{ github.ref_name }} git push origin HEAD:${{ env.BUILD_BRANCH }} - name: make pull request comment diff --git a/.gitea/workflows/convert-to-yml.yml b/.gitea/workflows/format->develop.yml similarity index 93% rename from .gitea/workflows/convert-to-yml.yml rename to .gitea/workflows/format->develop.yml index cadfb8a..e874e0e 100644 --- a/.gitea/workflows/convert-to-yml.yml +++ b/.gitea/workflows/format->develop.yml @@ -3,7 +3,7 @@ run-name: ${{ github.actor }} is learning GitHub Actions on: push: branches: - - 'format-**' + - 'format/**' jobs: develop-branch: runs-on: ubuntu-latest @@ -12,6 +12,7 @@ jobs: - uses: http://sigyl.com:3000/actions/checkout@v3.5.4 with: token: ${{ secrets.BOT_TOKEN }} + fetch-depth: '10' - uses: http://sigyl.com:3000/actions/setup-node@v3 with: node-version: '20' @@ -22,8 +23,8 @@ jobs: - name: get development branch name run: | firstString=${{ github.ref_name }} - secondString="develop-" - echo ::set-env name=DEVELOPMENT_BRANCH::${firstString/format-/"$secondString"} + secondString="develop" + echo ::set-env name=DEVELOPMENT_BRANCH::${firstString/format\//"$secondString"\/} - name: clone run: | git clone ${{ github.serverUrl }}/${{ github.repository }} ../cloned @@ -47,7 +48,7 @@ jobs: git checkout -b ${{ env.DEVELOPMENT_BRANCH }} git add -A git status - git commit -a -m "${{ env.CI_COMMIT_MESSAGE }} xml files converted to yml" + git commit -a -m "${{ github.ref_name }} -> ${{ env.DEVELOPMENT_BRANCH }} " git push origin HEAD:${{ env.DEVELOPMENT_BRANCH }} #- name: push development # env: diff --git a/.gitea/workflows/pr-closed.yml b/.gitea/workflows/pr-closed.yml index 1cd48b8..ba3f6fc 100644 --- a/.gitea/workflows/pr-closed.yml +++ b/.gitea/workflows/pr-closed.yml @@ -26,8 +26,8 @@ jobs: - name: get build branch name run: | firstString=${{ github.head_ref }} - secondString="build-" - echo ::set-env name=BUILD_BRANCH::${firstString/develop-/"$secondString"} + secondString="build" + echo ::set-env name=BUILD_BRANCH::${firstString/develop\//"$secondString"\/}s if_merged: if: github.event.pull_request.merged == true runs-on: ubuntu-latest @@ -44,8 +44,3 @@ jobs: repo-token: ${{ secrets.BOT_TOKEN }} outcome: ${{ steps.delete_develop_branch.outcome }} test-id: Error code ${{ matrix.code }} - - name: get build branch name - run: | - firstString=${{ github.head_ref }} - secondString="build-" - echo ::set-env name=BUILD_BRANCH::${firstString/develop-/"$secondString"} diff --git a/.gitea/workflows/pr-reopened.yml b/.gitea/workflows/pr-reopened.yml index 2418813..99705d2 100644 --- a/.gitea/workflows/pr-reopened.yml +++ b/.gitea/workflows/pr-reopened.yml @@ -32,8 +32,8 @@ jobs: - name: get build branch name run: | firstString=${{ github.ref_name }} - secondString="build-" - echo ::set-env name=BUILD_BRANCH::${firstString/develop-/"$secondString"} + secondString="build" + echo ::set-env name=BUILD_BRANCH::${firstString/develop\//"$secondString"\/} - name: GIT commit and push all changed files env: CI_COMMIT_MESSAGE: Reopened PR copnverted to xml. diff --git a/.gitea/workflows/convert-to-xml.yml b/.gitea/workflows/tag->deploy.yml similarity index 88% rename from .gitea/workflows/convert-to-xml.yml rename to .gitea/workflows/tag->deploy.yml index e83de5b..c76cffd 100644 --- a/.gitea/workflows/convert-to-xml.yml +++ b/.gitea/workflows/tag->deploy.yml @@ -11,6 +11,7 @@ jobs: - uses: http://sigyl.com:3000/actions/checkout@v3.5.4 with: token: ${{ secrets.BOT_TOKEN }} + fetch-depth: '10' - name: ls run: ls - uses: actions/setup-node@v3 @@ -29,5 +30,5 @@ jobs: 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 "${{ env.CI_COMMIT_MESSAGE }} yml files converted to xml" + git commit -a -m "${{ github.ref_name }} -> refs/heads/deployed/${{ github.ref_name }} " git push origin HEAD:refs/heads/deployed-${{ github.ref_name }} diff --git a/instructions/equipment-model2.a.yml b/instructions/equipment-model2.a.yml index e6b4e98..56e685c 100644 --- a/instructions/equipment-model2.a.yml +++ b/instructions/equipment-model2.a.yml @@ -135,7 +135,7 @@ - Required: '0' - ApproveSignatureTemplateName: null - RevertSignatureTemplateName: null - - Description: Confirmation by the author of the recipe that it is ready for review.s...hhh.... + - Description: Confirmation by the author of the recipe that it is ready forvfvfsxsxsxvf review.s...hhh.... - RecipeApprovalStep: - Name: Review Recipe - Id: '-3' diff --git a/tea b/tea deleted file mode 100755 index 71f639b..0000000 Binary files a/tea and /dev/null differ