-
Notifications
You must be signed in to change notification settings - Fork 15
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 linuxdeepin/.github@d17bd3d
sync by github workflow Log: none Influence: none
- Loading branch information
deepin-admin-bot
committed
Oct 30, 2023
1 parent
7043a72
commit 59cc1c5
Showing
4 changed files
with
50 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,15 @@ | ||
name: backup to gitlab | ||
on: [push] | ||
|
||
concurrency: | ||
group: ${{ github.workflow }} | ||
cancel-in-progress: true | ||
|
||
jobs: | ||
backup-to-gitlabwh: | ||
uses: linuxdeepin/.github/.github/workflows/backup-to-gitlabwh.yml@master | ||
secrets: inherit | ||
|
||
backup-to-gitee: | ||
uses: linuxdeepin/.github/.github/workflows/backup-to-gitee.yml@master | ||
secrets: inherit |
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,9 @@ | ||
name: chatOps | ||
on: | ||
issue_comment: | ||
types: [created] | ||
|
||
jobs: | ||
chatopt: | ||
uses: linuxdeepin/.github/.github/workflows/chatOps.yml@master | ||
secrets: inherit |
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,15 @@ | ||
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: linuxdeepin/.github/.github/workflows/cla-check.yml@master | ||
secrets: inherit |
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,11 @@ | ||
name: Call commitlint | ||
on: | ||
pull_request_target: | ||
|
||
concurrency: | ||
group: ${{ github.workflow }}-pull/${{ github.event.number }} | ||
cancel-in-progress: true | ||
|
||
jobs: | ||
check_job: | ||
uses: linuxdeepin/.github/.github/workflows/commitlint.yml@master |