Skip to content

Commit

Permalink
chore(release) Merge branch 'release/v0.7.0_rc1'
Browse files Browse the repository at this point in the history
Commit release v0.7.0 to master branch
  • Loading branch information
GlennBullingham committed Jan 25, 2021
2 parents c451a30 + 9a1f07e commit a9fc77f
Show file tree
Hide file tree
Showing 230 changed files with 18,220 additions and 4,859 deletions.
2 changes: 1 addition & 1 deletion .dockerignore
Original file line number Diff line number Diff line change
@@ -1 +1 @@
mayastor-test
test
10 changes: 10 additions & 0 deletions .envrc
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
# If you want to configure certain options for your .envrc and don't
# want git to track that change you can either use:
# (1) ~/.gitignore (which is global)
# (2) `git update-index --assume-unchanged .envrc

# Use with all defaults:
use nix

# Or, use with nospdk/norust:
# use nix --arg nospdk true --arg norust true
2 changes: 1 addition & 1 deletion .github/auto_assign.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,8 +9,8 @@ reviewers:
- blaisedias
- cjones1024
- jonathan-teh
- tjoshum
- jkryl
- gila
- paulyoong
- chriswldenyer
- tiagolobocastro
Expand Down
21 changes: 21 additions & 0 deletions .github/workflows/pr-commitlint.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
name: Lint Commit Messages
on:
pull_request:
types: ['opened', 'edited', 'reopened', 'synchronize']

jobs:
commitlint:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
with:
fetch-depth: 0
- name: Install CommitLint and Dependencies
run: npm install @commitlint/config-conventional @commitlint/cli
- name: Lint Commits
run: |
first_commit=$(curl ${{ github.event.pull_request.commits_url }} 2>/dev/null | jq '.[0].sha' | sed 's/"//g')
last_commit=HEAD^2 # don't lint the merge commit
npx commitlint --from $first_commit~1 --to $last_commit -V
- name: Lint Pull Request
run: echo "${{ github.event.pull_request.title }}"$'\n\n'"${{ github.event.pull_request.body }}" | npx commitlint -V
3 changes: 3 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -9,3 +9,6 @@
**/*.tfstate*
mayastor/local-randrw-0-verify.state
mayastor/local-write_verify-0-verify.state
test-yamls/*
/package-lock.json
/node_modules
8 changes: 8 additions & 0 deletions .pre-commit-config.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -30,3 +30,11 @@ repos:
pass_filenames: true
types: [file, javascript]
language: system
- id: commit-lint
name: Commit Lint
description: Runs commitlint against the commit message.
language: system
entry: bash -c "npm install @commitlint/config-conventional @commitlint/cli; cat $1 | npx commitlint"
args: [$1]
stages: [commit-msg]

Loading

0 comments on commit a9fc77f

Please sign in to comment.