chore: Sync by

This commit is contained in:
deepin-community-bot 2022-09-22 07:43:00 +00:00
parent 40ef4e27ac
commit 48ff52c141
5 changed files with 69 additions and 0 deletions

12
.github/workflows/backup-to-gitlab.yml vendored Normal file
View File

@ -0,0 +1,12 @@
name: backup to gitlab
on: [push]
concurrency:
group: ${{ github.workflow }}
cancel-in-progress: true
jobs:
backup-to-gitlabwh:
uses: deepin-community/.github/.github/workflows/backup-to-gitlabwh.yml@master
secrets:
BRIDGETOKEN: ${{ secrets.BRIDGETOKEN }}

17
.github/workflows/call-build-deb.yml vendored Normal file
View File

@ -0,0 +1,17 @@
name: Call build-deb
on:
pull_request_target:
paths-ignore:
- ".github/workflows/**"
types: [ opened, closed, synchronize ]
concurrency:
group: ${{ github.workflow }}-pull/${{ github.event.number }}
cancel-in-progress: true
jobs:
check_job:
if: github.event.action != 'closed' || github.event.pull_request.merged
uses: deepin-community/.github/.github/workflows/build-deb.yml@master
secrets:
BridgeToken: ${{ secrets.BridgeToken }}

14
.github/workflows/call-build-tag.yml vendored Normal file
View File

@ -0,0 +1,14 @@
name: tag build
on:
push:
tags: "*"
concurrency:
group: ${{ github.workflow }}
cancel-in-progress: true
jobs:
build:
uses: deepin-community/.github/.github/workflows/build-tag.yml@master
secrets:
BridgeToken: ${{ secrets.BridgeToken }}

10
.github/workflows/call-chatOps.yml vendored Normal file
View File

@ -0,0 +1,10 @@
name: chatOps
on:
issue_comment:
types: [created]
jobs:
chatopt:
uses: deepin-community/.github/.github/workflows/chatOps.yml@master
secrets:
APP_PRIVATE_KEY: ${{ secrets.APP_PRIVATE_KEY }}

16
.github/workflows/call-clacheck.yml vendored Normal file
View File

@ -0,0 +1,16 @@
name: Call CLA check
on:
issue_comment:
types: [created]
pull_request_target:
types: [opened, closed, synchronize]
concurrency:
group: ${{ github.workflow }}-pull/${{ github.event.number }}
cancel-in-progress: true
jobs:
clacheck:
uses: deepin-community/.github/.github/workflows/cla-check.yml@master
secrets:
APP_PRIVATE_KEY: ${{ secrets.APP_PRIVATE_KEY }}