This commit is contained in:
Aleksandr Tolstikhin 2024-12-07 01:57:57 +07:00
parent 34f1caaed6
commit 6e9aa3b4bd
2 changed files with 9 additions and 9 deletions
.gitea/workflows

@ -10,7 +10,7 @@ on:
jobs:
if_merged:
if: github.event.pull_request.merged == true
if: ${{ github.event.pull_request.state != 'closed' || github.event.pull_request.merged == true }}
runs-on: ubuntu-latest
steps:
- name: setup-go

@ -1,21 +1,21 @@
name: test
on:
pull_request:
types: [opened, reopened, closed, synchronize]
branches:
- master
- v3
- v4
push:
branches:
- master
- v3
- v4
pull_request:
types: [opened, reopened, closed]
branches:
- master
- v3
- v4
jobs:
test:
name: test
if_merged:
if: ${{ github.event.pull_request.state != 'closed' || github.event.pull_request.merged == true }}
runs-on: ubuntu-latest
steps:
- name: setup-go