-
Notifications
You must be signed in to change notification settings - Fork 38
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat: add workflow for sync from dtk5
add workflow.
- Loading branch information
1 parent
bb2c963
commit ffb1f2e
Showing
2 changed files
with
29 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,19 @@ | ||
name: Call synchronize to dtk6 | ||
on: | ||
pull_request_target: | ||
paths-ignore: | ||
- "debian/**" | ||
- "archlinux/**" | ||
- "rpm/**" | ||
- ".obs/**" | ||
- ".github/**" | ||
|
||
jobs: | ||
call-synchronize: | ||
uses: linuxdeepin/dtk/.github/workflows/synchronize-to-dtk6.yml@master | ||
secrets: inherit | ||
with: | ||
dest_repo: linuxdeepin/qt6platform-plugins | ||
source_repo: ${{ github.event.pull_request.head.repo.full_name }} | ||
source_ref: ${{ github.event.pull_request.head.ref }} | ||
pull_number: ${{ github.event.pull_request.number }} |
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 @@ | ||
# Paths that will be exclude from synchronize workflow | ||
# Please use relative path which use project directory as root | ||
# Notice that | ||
# * .git | ||
# * debian | ||
# * archlinux | ||
# * .obs | ||
# * .github | ||
# are always ignored | ||
linglong.yaml |