Skip to content
This repository has been archived by the owner on Apr 9, 2024. It is now read-only.

Commit

Permalink
ci(circleci): upgrade ci orb and commands (#1)
Browse files Browse the repository at this point in the history
* ci(circleci): upgrade ci orb and commands

* ci(circleci): upgrade ci orb and commands

* ci(circleci): upgrade orb and PR template

* ci(circleci): upgrade orb
  • Loading branch information
xavidop committed Jan 20, 2021
1 parent 8928bd8 commit f12aee3
Show file tree
Hide file tree
Showing 3 changed files with 2,414 additions and 8 deletions.
24 changes: 16 additions & 8 deletions .circleci/config.yml
@@ -1,16 +1,24 @@
version: 2.1

orbs:
vfcommon: voiceflow/common@0.0.52

jobs:
release:
docker:
- image: node:11
build-and-test:
executor: vfcommon/default-executor
steps:
- checkout
- run: npm i -g semantic-release@15
- run: semantic-release
- vfcommon/install_node_modules

workflows:
version: 2
test-and-build:
test-and-release:
jobs:
- release:
- build-and-test:
context: dev-test
- vfcommon/release:
context: dev-test
requires:
- build-and-test
filters:
branches:
only: master
36 changes: 36 additions & 0 deletions .github/PULL_REQUEST_TEMPLATE.md
@@ -0,0 +1,36 @@
<!-- You can erase any parts of this template not applicable to your Pull Request. -->

**Fixes or implements CORE-XXX**

### Brief description. What is this change?

<!-- Build up some context for your teammates on the changes made here and potential tradeoffs made and/or highlight any topics for discussion -->

### Implementation details. How do you make this change?

<!-- Explain the way/approach you follow to make this change more deeply in order to help your teammates to undertand much easier this change -->

### Setup information

<!-- Notes regarding local environment. These should note any new configurations, new environment variables, etc. -->


### Deployment Notes

<!-- Notes regarding deployment the contained body of work. These should note any db migrations, etc. -->

### Related PRs

<!-- List related PRs against other branches -->

| branch | PR |
| ------------------- | ----------- |
| other_pr_production | [link](url) |
| other_pr_master | [link](url) |

### Checklist

- [ ] title of PR reflects the branch name
- [ ] all commits adhere to conventional commits
- [ ] appropriate tests have been written
- [ ] all the dependendencies are upgraded

0 comments on commit f12aee3

Please sign in to comment.