Initial commit
This commit is contained in:
commit
fc2efe3988
43 changed files with 34142 additions and 0 deletions
18
.github/workflows/cd.yml
vendored
Normal file
18
.github/workflows/cd.yml
vendored
Normal file
|
@ -0,0 +1,18 @@
|
|||
name: cd
|
||||
on:
|
||||
workflow_run:
|
||||
workflows: ["ci"]
|
||||
branches-ignore: ["*"]
|
||||
types:
|
||||
- completed
|
||||
push:
|
||||
tags:
|
||||
- "v*"
|
||||
|
||||
permissions:
|
||||
contents: read
|
||||
|
||||
jobs:
|
||||
plugin-cd:
|
||||
uses: mattermost/actions-workflows/.github/workflows/plugin-cd.yml@main
|
||||
secrets: inherit
|
18
.github/workflows/ci.yml
vendored
Normal file
18
.github/workflows/ci.yml
vendored
Normal file
|
@ -0,0 +1,18 @@
|
|||
name: ci
|
||||
on:
|
||||
schedule:
|
||||
- cron: "0 0 * * *"
|
||||
push:
|
||||
branches:
|
||||
- master
|
||||
tags:
|
||||
- "v*"
|
||||
pull_request:
|
||||
|
||||
permissions:
|
||||
contents: read
|
||||
|
||||
jobs:
|
||||
plugin-ci:
|
||||
uses: mattermost/actions-workflows/.github/workflows/plugin-ci.yml@main
|
||||
secrets: inherit
|
Loading…
Add table
Add a link
Reference in a new issue