Skip to content

Commit 82959bc

Browse files
author
deepin-admin-bot
committed
sync by github workflow Log: none Influence: none
1 parent 7b0eab2 commit 82959bc

File tree

2 files changed

+29
-0
lines changed

2 files changed

+29
-0
lines changed

.github/workflows/call-auto-tag.yml

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,16 @@
1+
name: auto tag
2+
3+
on:
4+
pull_request_target:
5+
types: [opened, synchronize, closed]
6+
paths:
7+
- "debian/changelog"
8+
9+
concurrency:
10+
group: ${{ github.workflow }}-pull/${{ github.event.number }}
11+
cancel-in-progress: true
12+
13+
jobs:
14+
auto_tag:
15+
uses: linuxdeepin/.github/.github/workflows/auto-tag.yml@master
16+
secrets: inherit

.github/workflows/call-tag-build.yml

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
name: tag build
2+
on:
3+
push:
4+
tags: "*"
5+
6+
concurrency:
7+
group: ${{ github.workflow }}
8+
cancel-in-progress: true
9+
10+
jobs:
11+
build:
12+
uses: linuxdeepin/.github/.github/workflows/build-tag.yml@master
13+
secrets: inherit

0 commit comments

Comments
 (0)