Skip to content

Commit c5079c4

Browse files
author
deepin-community-bot
committed
1 parent 8666181 commit c5079c4

File tree

5 files changed

+69
-0
lines changed

5 files changed

+69
-0
lines changed
Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
name: backup to gitlab
2+
on: [push]
3+
4+
concurrency:
5+
group: ${{ github.workflow }}
6+
cancel-in-progress: true
7+
8+
jobs:
9+
backup-to-gitlabwh:
10+
uses: deepin-community/.github/.github/workflows/backup-to-gitlabwh.yml@master
11+
secrets:
12+
BRIDGETOKEN: ${{ secrets.BRIDGETOKEN }}
Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,17 @@
1+
name: Call build-deb
2+
on:
3+
pull_request_target:
4+
paths-ignore:
5+
- ".github/workflows/**"
6+
types: [ opened, closed, synchronize ]
7+
8+
concurrency:
9+
group: ${{ github.workflow }}-pull/${{ github.event.number }}
10+
cancel-in-progress: true
11+
12+
jobs:
13+
check_job:
14+
if: github.event.action != 'closed' || github.event.pull_request.merged
15+
uses: deepin-community/.github/.github/workflows/build-deb.yml@master
16+
secrets:
17+
BridgeToken: ${{ secrets.BridgeToken }}
Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
1+
name: tag build
2+
on:
3+
push:
4+
tags: "*"
5+
6+
concurrency:
7+
group: ${{ github.workflow }}
8+
cancel-in-progress: true
9+
10+
jobs:
11+
build:
12+
uses: deepin-community/.github/.github/workflows/build-tag.yml@master
13+
secrets:
14+
BridgeToken: ${{ secrets.BridgeToken }}

.github/workflows/call-chatOps.yml

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
name: chatOps
2+
on:
3+
issue_comment:
4+
types: [created]
5+
6+
jobs:
7+
chatopt:
8+
uses: deepin-community/.github/.github/workflows/chatOps.yml@master
9+
secrets:
10+
APP_PRIVATE_KEY: ${{ secrets.APP_PRIVATE_KEY }}
Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,16 @@
1+
name: Call CLA check
2+
on:
3+
issue_comment:
4+
types: [created]
5+
pull_request_target:
6+
types: [opened, synchronize]
7+
8+
concurrency:
9+
group: ${{ github.workflow }}-pull/${{ github.event.number }}
10+
cancel-in-progress: true
11+
12+
jobs:
13+
clacheck:
14+
uses: deepin-community/.github/.github/workflows/cla-check.yml@master
15+
secrets:
16+
APP_PRIVATE_KEY: ${{ secrets.APP_PRIVATE_KEY }}

0 commit comments

Comments
 (0)