Migrate from CircleCI to Github Actions (#173)
CI/CD reusable workflows in Github Actions for Plugin software lifecycle Ticket: https://mattermost.atlassian.net/browse/CLD-4816
This commit is contained in:
parent
e7fd65fd4e
commit
c0b3c8b760
4 changed files with 37 additions and 12 deletions
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
|
Reference in a new issue