Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
sync by github workflow

Log: none
Influence: none
  • Loading branch information
deepin-admin-bot committed Aug 8, 2023
1 parent 2b1efc2 commit 283b261
Show file tree
Hide file tree
Showing 7 changed files with 108 additions and 0 deletions.
15 changes: 15 additions & 0 deletions .github/workflows/backup-to-gitlab.yml
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
16 changes: 16 additions & 0 deletions .github/workflows/call-auto-tag.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
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: linuxdeepin/.github/.github/workflows/auto-tag.yml@master
secrets: inherit
9 changes: 9 additions & 0 deletions .github/workflows/call-chatOps.yml
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
15 changes: 15 additions & 0 deletions .github/workflows/call-clacheck.yml
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
11 changes: 11 additions & 0 deletions .github/workflows/call-commitlint.yml
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
16 changes: 16 additions & 0 deletions .github/workflows/call-license-check.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
name: Call License and README Check
on:
pull_request_target:
types: [opened, synchronize, reopened]

permissions:
pull-requests: write
contents: read

concurrency:
group: ${{ github.workflow }}-pull/${{ github.event.number }}
cancel-in-progress: true

jobs:
license-check:
uses: linuxdeepin/.github/.github/workflows/license-check.yml@master
26 changes: 26 additions & 0 deletions .github/workflows/cppcheck.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,26 @@
name: cppcheck
on:
pull_request_target:
paths-ignore:
- ".github/workflows/**"

concurrency:
group: ${{ github.workflow }}-pull/${{ github.event.number }}
cancel-in-progress: true

jobs:
cppchceck:
name: cppcheck
runs-on: ubuntu-latest
steps:
- run: export
- uses: actions/checkout@v3
with:
ref: ${{ github.event.pull_request.head.sha }}
persist-credentials: false
- uses: linuxdeepin/action-cppcheck@main
with:
github_token: ${{ secrets.GITHUB_TOKEN }}
repository: ${{ github.repository }}
pull_request_id: ${{ github.event.pull_request.number }}
allow_approve: false

0 comments on commit 283b261

Please sign in to comment.