Skip to content

Commit

Permalink
Migrate from CircleCI to Github Actions (#72)
Browse files Browse the repository at this point in the history
CI/CD reusable workflows in Github Actions for Plugin software lifecycle

Ticket: https://mattermost.atlassian.net/browse/CLD-4816
  • Loading branch information
spirosoik committed Feb 7, 2023
1 parent ee7b9d5 commit a643cf2
Show file tree
Hide file tree
Showing 5 changed files with 38 additions and 53 deletions.
53 changes: 0 additions & 53 deletions .circleci/config.yml

This file was deleted.

18 changes: 18 additions & 0 deletions .github/workflows/cd.yml
@@ -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 changes: 18 additions & 0 deletions .github/workflows/ci.yml
@@ -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
1 change: 1 addition & 0 deletions .nvmrc
@@ -0,0 +1 @@
14.21.1
1 change: 1 addition & 0 deletions lock-missing.txt
@@ -0,0 +1 @@
mattermost-plugin-aws-SNS

0 comments on commit a643cf2

Please sign in to comment.