-
Notifications
You must be signed in to change notification settings - Fork 22
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
chore: Sync by linuxdeepin/.github@6fbf8e0
sync by github workflow Log: none Influence: none
- Loading branch information
deepin-admin-bot
committed
Oct 14, 2022
1 parent
239dcaa
commit 6ece596
Showing
2 changed files
with
29 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,16 @@ | ||
name: auto tag | ||
|
||
on: | ||
pull_request_target: | ||
types: [opened, synchronize, closed] | ||
paths: | ||
- "debian/changelog" | ||
|
||
concurrency: | ||
group: ${{ github.workflow }}-pull/${{ github.event.number }} | ||
cancel-in-progress: true | ||
|
||
jobs: | ||
auto_tag: | ||
uses: linuxdeepin/.github/.github/workflows/auto-tag.yml@master | ||
secrets: inherit |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,13 @@ | ||
name: tag build | ||
on: | ||
push: | ||
tags: "*" | ||
|
||
concurrency: | ||
group: ${{ github.workflow }} | ||
cancel-in-progress: true | ||
|
||
jobs: | ||
build: | ||
uses: linuxdeepin/.github/.github/workflows/build-tag.yml@master | ||
secrets: inherit |