Initial commit

This commit is contained in:
deepin-community-ci-bot[bot]
2023-02-15 04:54:53 +00:00
committed by GitHub
commit 3beed837f7
13 changed files with 156 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-auto-tag.yml vendored Normal file
View File

@@ -0,0 +1,17 @@
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: deepin-community/.github/.github/workflows/auto-tag.yml@master
secrets:
APP_PRIVATE_KEY: ${{ secrets.APP_PRIVATE_KEY }}

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 }}