Skip to content
This repository has been archived by the owner on May 10, 2023. It is now read-only.

Commit

Permalink
Merge pull request #428 from vegaprotocol/release/v0.11.0
Browse files Browse the repository at this point in the history
Release/v0.11.0
  • Loading branch information
jeremyletang authored Dec 10, 2021
2 parents 15683e7 + 978a44d commit 57a7110
Show file tree
Hide file tree
Showing 117 changed files with 4,756 additions and 2,518 deletions.
27 changes: 27 additions & 0 deletions .github/workflows/add_issue_new_projects.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,27 @@
---

name: Auto Assign Issue to New Project

"on":
issues:
types: [opened]

jobs:
add_issue:
runs-on: ubuntu-latest
steps:
- name: Add Issue to New Core Project Board
env:
GITHUB_TOKEN: ${{ secrets.GH_NEW_CARD_TO_PROJECT }}
PROJECT_ID: ${{ secrets.CORE_PROJECT_ID }}
ISSUE_ID: ${{ github.event.issue.node_id }}
run: |
gh api graphql -f query='
mutation($project:ID!, $issue:ID!) {
addProjectNextItem(input: {projectId: $project, contentId: $issue}) {
projectNextItem {
id
}
}
}' -f project=$PROJECT_ID -f issue=$ISSUE_ID --jq '.data.addProjectNextItem.projectNextItem.id'
2 changes: 1 addition & 1 deletion .github/workflows/pr_verify_linked_issue.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,6 @@ jobs:
name: Ensure Pull Request has a linked issue.
steps:
- name: Verify Linked Issue
uses: hattan/verify-linked-issue-action@95c0d0150d7e7687e45a76fbf0b0c6aa8daef288
uses: hattan/verify-linked-issue-action@2d8e2e47a462cc7b07ba5e6cab6f9d57bd36672e
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
10 changes: 4 additions & 6 deletions .golangci.toml
Original file line number Diff line number Diff line change
Expand Up @@ -5,17 +5,12 @@ print-linter-name = true
[linters]
enable-all = true
disable = [
# To be fixed
"bodyclose",
# To be investigate
"cyclop",
"dupl",
"exhaustivestruct",
"funlen",
"gochecknoglobals",
"gochecknoinits",
"gocognit",
"goconst",
"gocritic",
"nestif",
"paralleltest",
"revive",
Expand All @@ -34,6 +29,9 @@ disable = [
"lll",
# nlreturn doesn't match our code style.
"nlreturn",
# Sometimes we can't just have a const variable, and we need to make it a
# variable instead.
"gochecknoglobals",
]

[issues.exclude-rules]
Expand Down
Loading

0 comments on commit 57a7110

Please sign in to comment.