Skip to content

Commit

Permalink
release v1.2.0 (#24)
Browse files Browse the repository at this point in the history
  • Loading branch information
Serpentiel committed Jul 28, 2022
1 parent 16e8a17 commit a56fec4
Show file tree
Hide file tree
Showing 12 changed files with 1,332 additions and 35 deletions.
1 change: 1 addition & 0 deletions .github/CODEOWNERS
Validating CODEOWNERS rules …
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
* @Serpentiel
3 changes: 3 additions & 0 deletions .github/ISSUE_TEMPLATE/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,3 +2,6 @@ contact_links:
- name: 📖 Contributing Guidelines
url: https://github.com/Serpentiel/template/blob/main/CONTRIBUTING.md
about: Don't forget to check our contributing guidelines out!
- name: 🛡️ Security Policy
url: https://github.com/Serpentiel/template/blob/main/SECURITY.md
about: Our security policy is as important as contributing guidelines are, too!
18 changes: 11 additions & 7 deletions .github/PULL_REQUEST_TEMPLATE.md
Original file line number Diff line number Diff line change
@@ -1,26 +1,30 @@
<!-- markdownlint-disable-next-line -->
**About this change—what it does?**

<!-- Please include a summary of the change and which issue is fixed. Please also include relevant motivation and context. List any dependencies that are required for this change. -->
<!-- Please include a summary of the change and which issue is fixed, relevant motivation and context. Don't forget to list any dependencies that are required for this change. -->

**What type of change is it?**

<!-- Please delete options that are not relevant. -->

- [ ] Breaking change, i.e. fix or feature that would cause existing functionality to not work as expected
- [ ] Bug fix, i.e. non-breaking change which fixes an issue
- [ ] Dependencies bump, i.e. upgrade of dependencies this project uses
- [ ] Documentation update, i.e. documentation-only change
- [ ] New feature, i.e. non-breaking change which adds functionality
- [ ] Breaking change, i.e. fix or feature that would cause existing functionality to not work as expected
- [ ] Release, i.e. a roll out of a new version of the project

- [ ] This change requires a documentation update

**Have you checked yourself twice?**

<!-- Please check all the boxes before opening the PR. -->

- [ ] My code follows the style guidelines of this project
- [ ] I have performed a self-review of my own code
- [ ] Any dependent changes have been merged and published in downstream modules
- [ ] I have added tests that prove my fix is effective or that my feature works
- [ ] I have checked my code and corrected any misspellings
- [ ] I have commented my code, particularly in hard-to-understand areas
- [ ] I have made corresponding changes to the documentation
- [ ] I have performed a self-review of my own code
- [ ] My changes generate no new warnings
- [ ] I have added tests that prove my fix is effective or that my feature works
- [ ] Any dependent changes have been merged and published in downstream modules
- [ ] I have checked my code and corrected any misspellings
- [ ] My code follows the contributing guidelines of this project
5 changes: 5 additions & 0 deletions .github/workflows/changelog_enforcer.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,11 @@ on:
pull_request_target:
branches:
- main
- release-v*

permissions:
contents: read

jobs:
changelog-enforcer:
runs-on: ubuntu-latest
Expand Down
13 changes: 10 additions & 3 deletions .github/workflows/dependency_review.yml
Original file line number Diff line number Diff line change
@@ -1,9 +1,16 @@
name: Dependency Review

on:
pull_request_target:
branches:
- main
- pull_request

# TODO: This is currently not supported, see https://github.com/actions/dependency-review-action/issues/30.
# pull_request_target:
# branches:
# - main
# - release-v*

permissions:
contents: read

jobs:
dependency-review:
Expand Down
14 changes: 10 additions & 4 deletions .github/workflows/lint.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,12 +4,18 @@ on:
pull_request_target:
branches:
- main
- release-v*

permissions:
contents: read

jobs:
markdownlint:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: DavidAnson/markdownlint-cli2-action@v6
with:
globs: '**/*.md'
- uses: actions/checkout@v3
- uses: DavidAnson/markdownlint-cli2-action@v6
with:
globs: |
**/*.md
!LICENSE.md
Loading

0 comments on commit a56fec4

Please sign in to comment.