-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
chore: Sync by deepin-community/.github@e01e1dd
- Loading branch information
deepin-community-bot
committed
Oct 21, 2022
1 parent
118da3c
commit 934c242
Showing
3 changed files
with
41 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -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 }} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -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 }} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -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 }} |