From 99079128be1262b1a1a76005104b3b1f8d0cba96 Mon Sep 17 00:00:00 2001 From: deepin-admin-bot Date: Fri, 14 Oct 2022 05:25:14 +0000 Subject: [PATCH] chore: Sync by https://github.com/linuxdeepin/.github/commit/6fbf8e00b96efe3fd50deef879f6679b80fa59a8 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 0000000..5018e5b --- /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 0000000..3b1850a --- /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/build-tag.yml@master + secrets: inherit