From 1191af61dd8f362c34439daabdd73ef1b0bbec55 Mon Sep 17 00:00:00 2001 From: deepin-admin-bot Date: Tue, 14 Feb 2023 08:27:39 +0000 Subject: [PATCH] chore: Sync by sync by github workflow Log: none Influence: none --- .github/workflows/call-auto-tag.yml | 16 ++++++++++++++++ .github/workflows/call-tag-build.yml | 13 +++++++++++++ 2 files changed, 29 insertions(+) create mode 100644 .github/workflows/call-auto-tag.yml create mode 100644 .github/workflows/call-tag-build.yml diff --git a/.github/workflows/call-auto-tag.yml b/.github/workflows/call-auto-tag.yml new file mode 100644 index 000000000..5018e5beb --- /dev/null +++ b/.github/workflows/call-auto-tag.yml @@ -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 diff --git a/.github/workflows/call-tag-build.yml b/.github/workflows/call-tag-build.yml new file mode 100644 index 000000000..6420b293b --- /dev/null +++ b/.github/workflows/call-tag-build.yml @@ -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/tag-build.yml@master + secrets: inherit