forked from vyperlang/vyper
-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'master' of https://github.com/vyperlang/vyper into fix/…
…address_members_as_struct
- Loading branch information
Showing
622 changed files
with
52,927 additions
and
25,529 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,60 @@ | ||
# jobs to validate pull request well-formedness | ||
|
||
name: Validate PR metadata | ||
|
||
on: | ||
pull_request: | ||
types: | ||
- opened | ||
- edited | ||
- synchronize | ||
|
||
permissions: | ||
pull-requests: read | ||
|
||
jobs: | ||
validate-pr: | ||
runs-on: ubuntu-latest | ||
steps: | ||
- uses: amannn/action-semantic-pull-request@v5 | ||
name: Run conventional commit checker | ||
env: | ||
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | ||
# https://github.com/amannn/action-semantic-pull-request?tab=readme-ov-file#configuration | ||
with: | ||
types: | | ||
feat | ||
perf | ||
fix | ||
chore | ||
refactor | ||
# ci: continuous integration | ||
# docs: documentation | ||
# test: test suite | ||
# lang: language changes | ||
# stdlib: changes to the stdlib | ||
# ux: language changes (UX) | ||
# tool: integration | ||
# ir: (old) IR/codegen changes | ||
# codegen: lowering from vyper AST to codegen | ||
# venom: venom changes | ||
scopes: | | ||
ci | ||
build | ||
docs | ||
test | ||
lang | ||
stdlib | ||
ux | ||
tool | ||
ir | ||
codegen | ||
venom | ||
requireScope: true | ||
subjectPattern: '^(?![A-Z]).+$' | ||
subjectPatternError: | | ||
Starts with uppercase letter: '{subject}' | ||
(Full PR title: '{title}') | ||
# type[scope]<optional !>: subject | ||
# use [] instead of () for aesthetics | ||
headerPattern: '^(\w*)(?:\[([\w$.\-*/ ]*)\])?!?: (.*)$' |
Oops, something went wrong.