batch-example/.gitea/workflows/pr-closed.yml

60 lines
2.1 KiB
YAML
Raw Normal View History

name: build-develop-branch
run-name: ${{ github.actor }} is learning GitHub Actions
on:
pull_request:
types:
- closed
2023-10-23 13:11:04 +00:00
- deleted
branches:
- 'master'
jobs:
2023-10-23 19:41:13 +00:00
if_merged:
if: github.event.pull_request.merged == true
runs-on: ubuntu-latest
steps:
2023-10-23 20:24:47 +00:00
- name: get tea
2023-10-23 20:42:01 +00:00
run: |
curl https://dl.gitea.com/tea/0.9.2/tea-0.9.2-linux-386 --output ../tea
chmod +x ../tea
2023-10-23 20:43:06 +00:00
../tea login add -n=this --url=${{ github.server_url}} -t=${{ secrets.BOT_TOKEN }}
- uses: http://sigyl.com:3000/actions/checkout@v3.5.4
with:
token: ${{ secrets.BOT_TOKEN }}
2023-10-23 21:16:31 +00:00
- name: get tag
2023-10-23 19:41:13 +00:00
run: |
2023-10-23 20:06:46 +00:00
../tea r ls -o=simple
2023-10-23 21:16:31 +00:00
version="$(../tea r ls -o=simple | head -n 1 | tr " " "\n" | head -n 1)"
2023-10-23 21:30:27 +00:00
newversion="$(version | awk -F. '{$NF = $NF + 1;} 1' | sed 's/ /./g')"
2023-10-23 21:23:21 +00:00
echo $newversion
../tea r c --note="this isrelease ${newversion}" --tag=${newversion} --title=${newversion} --target=${{ github.sha }}
- 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 }}
2023-10-23 19:41:13 +00:00
delete-develop:
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
- 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 }}
2023-10-23 19:41:13 +00:00
- name: get build branch name
run: |
firstString=${{ github.head_ref }}
secondString="build"
echo ::set-env name=BUILD_BRANCH::${firstString/develop\//"$secondString"\/}s