develop/tags-3 -> build/tags-3
convert-to-yml / develop-branch (push) Successful in 32s
Details
convert-to-yml / develop-branch (push) Successful in 32s
Details
This commit is contained in:
parent
332970334f
commit
b4bcd334ce
|
@ -6,23 +6,11 @@ on:
|
|||
- closed
|
||||
- deleted
|
||||
branches:
|
||||
- 'master'
|
||||
- master
|
||||
|
||||
jobs:
|
||||
if_merged:
|
||||
if: github.event.pull_request.merged == true
|
||||
runs-on: ubuntu-latest
|
||||
steps:
|
||||
- name: delete develop branch
|
||||
id: delete_develop_branch
|
||||
run: git push origin --delete ${{ github.head_ref }}
|
||||
continue-on-error: true
|
||||
- uses: mainmatter/continue-on-error-comment@v1
|
||||
with:
|
||||
repo-token: ${{ secrets.BOT_TOKEN }}
|
||||
outcome: ${{ steps.delete_develop_branch.outcome }}
|
||||
test-id: Error code ${{ matrix.code }}
|
||||
delete-develop:
|
||||
if: ${{ ! startsWith(github.head_ref, 'develop/') }}
|
||||
runs-on: ubuntu-latest
|
||||
steps:
|
||||
- uses: http://sigyl.com:3000/actions/checkout@v3.5.4
|
||||
|
@ -42,4 +30,6 @@ jobs:
|
|||
firstString=${{ github.head_ref }}
|
||||
secondString="build"
|
||||
echo ::set-env name=BUILD_BRANCH::${firstString/develop\//"$secondString"\/}s
|
||||
- name: delete build branch
|
||||
run: git push origin --delete ${{ env.BUILD_BRANCH }}
|
||||
|
201
README.md
201
README.md
|
@ -1,101 +1,100 @@
|
|||
# batch-example
|
||||
|
||||
This repository will store and allow versioning and approval of a batch configuration.
|
||||
|
||||
This repository **only** contains exported configuration. It does not contain any binary files (eg equipment-model.cfg nor system state or log files). These are excluded using the **.gitignore** file.
|
||||
|
||||
## change process
|
||||
|
||||
tea is here (i had to change docker file to just be based on node:latest)
|
||||
|
||||
https://gitea.com/gitea/tea/src/branch/main/docs/CLI.md
|
||||
|
||||
|
||||
On ?tag ? push to master
|
||||
clone master
|
||||
branch deployed
|
||||
yml -> xml
|
||||
push deployed
|
||||
|
||||
|
||||
|
||||
pull to production PC and import
|
||||
|
||||
pull to development, import, modify, export
|
||||
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
|
||||
?git branch -D format-branch
|
||||
git checkout format-branch
|
||||
git merge deployed
|
||||
|
||||
```
|
||||
|
||||
make changes and export files
|
||||
|
||||
commit and push back to server
|
||||
|
||||
```sh
|
||||
git add -A
|
||||
git commit
|
||||
git push origin format-branch
|
||||
```
|
||||
|
||||
### format-bot pc
|
||||
|
||||
```sh
|
||||
git branch -D format-branch
|
||||
git fetch origin
|
||||
git checkout -b format-branch
|
||||
git checkout master
|
||||
git pull
|
||||
git branch -D product-development
|
||||
git checkout -b product-development
|
||||
git merge --squash --no-commit --no-ff --strategyoption=theirs format-branch
|
||||
|
||||
```
|
||||
|
||||
run the formatter
|
||||
|
||||
```sh
|
||||
git add -A
|
||||
git commit
|
||||
git push origin product-development
|
||||
git push origin --delete format-branch
|
||||
|
||||
```
|
||||
|
||||
create a pull request
|
||||
|
||||
```sh
|
||||
git fetch --tags
|
||||
gotea pr c --base=master --head=product-development --repo another-user/batch-example --title="WIP: this is a PR! it rocks!"
|
||||
|
||||
```
|
||||
|
||||
closing a pull request (not used)
|
||||
```sh
|
||||
gotea pr close --repo another-user/batch-example 11
|
||||
```
|
||||
|
||||
build
|
||||
|
||||
```sh
|
||||
|
||||
git checkout master
|
||||
git pull
|
||||
git checkout deployed
|
||||
git merge master
|
||||
```
|
||||
|
||||
make xml files
|
||||
|
||||
```sh
|
||||
git add -A
|
||||
git commit
|
||||
git push origin deployed
|
||||
```
|
||||
# batch-example
|
||||
|
||||
This repository will store and allow versioning and approval of a batch configuration.
|
||||
|
||||
This repository **only** contains exported configuration. It does not contain any binary files (eg equipment-model.cfg nor system state or log files). These are excluded using the **.gitignore** file.
|
||||
|
||||
## change process
|
||||
|
||||
tea is here (i had to change docker file to just be based on node:latest)
|
||||
|
||||
https://gitea.com/gitea/tea/src/branch/main/docs/CLI.md
|
||||
|
||||
|
||||
On ?tag ? push to master
|
||||
clone master
|
||||
branch deployed
|
||||
yml -> xml
|
||||
push deployed
|
||||
|
||||
|
||||
pull to production PC and import
|
||||
|
||||
pull to development, import, modify, export
|
||||
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
|
||||
?git branch -D format-branch
|
||||
git checkout format-branch
|
||||
git merge deployed
|
||||
|
||||
```
|
||||
|
||||
make changes and export files
|
||||
|
||||
commit and push back to server
|
||||
|
||||
```sh
|
||||
git add -A
|
||||
git commit
|
||||
git push origin format-branch
|
||||
```
|
||||
|
||||
### format-bot pc
|
||||
|
||||
```sh
|
||||
git branch -D format-branch
|
||||
git fetch origin
|
||||
git checkout -b format-branch
|
||||
git checkout master
|
||||
git pull
|
||||
git branch -D product-development
|
||||
git checkout -b product-development
|
||||
git merge --squash --no-commit --no-ff --strategyoption=theirs format-branch
|
||||
|
||||
```
|
||||
|
||||
run the formatter
|
||||
|
||||
```sh
|
||||
git add -A
|
||||
git commit
|
||||
git push origin product-development
|
||||
git push origin --delete format-branch
|
||||
|
||||
```
|
||||
|
||||
create a pull request
|
||||
|
||||
```sh
|
||||
git fetch --tags
|
||||
gotea pr c --base=master --head=product-development --repo another-user/batch-example --title="WIP: this is a PR! it rocks!"
|
||||
|
||||
```
|
||||
|
||||
closing a pull request (not used)
|
||||
```sh
|
||||
gotea pr close --repo another-user/batch-example 11
|
||||
```
|
||||
|
||||
build
|
||||
|
||||
```sh
|
||||
|
||||
git checkout master
|
||||
git pull
|
||||
git checkout deployed
|
||||
git merge master
|
||||
```
|
||||
|
||||
make xml files
|
||||
|
||||
```sh
|
||||
git add -A
|
||||
git commit
|
||||
git push origin deployed
|
||||
```
|
||||
|
|
Loading…
Reference in New Issue