Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Release v0.16.5 #161

Merged
merged 5 commits into from
Jul 14, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/CONTRIBUTING.md
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ Because we use merge commits when merging a PR, branch names will be part of the
branch names must follow a certain standard.

The format is `{category}/GH-{issue number}/{lowercase-description}` and a branch name can be maximum 50 characters of
length.
length. You can also use `NO-ISSUE` instead of a GitHub issue number.

Category must match a
category [used in our Commitlint config](https://github.com/conventional-changelog/commitlint/tree/master/%40commitlint/config-conventional#type-enum).
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/resolved-issue-locking.yml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
name: Lock resolved issues and PRs
on:
schedule:
- cron: '0 0 * * *'
- cron: '0 0 * * 1'
workflow_call:
jobs:
lock:
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/validate-branch-name.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ jobs:
if: (!startsWith(github.event.pull_request.head.ref, 'release/')) && (!startsWith(github.event.pull_request.head.ref, 'hotfix/')) && github.event.pull_request.head.ref != 'crowdin-translations'
uses: deepakputhraya/action-branch-name@5f1cc199284b75145ec2d13434422e6987cf6af8
with:
regex: '^([a-z])+\/GH-\d*\/([a-z-])+$'
regex: '^([a-z])+\/(GH-\d*|NO-ISSUE)\/([a-z-])+$'
allowed_prefixes: 'build,chore,ci,docs,feat,fix,perf,refactor,revert,style,test'
ignore: main,develop
min_length: 5
Expand Down
11 changes: 10 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,13 @@ to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).

## [Unreleased]

## [0.16.5] - 2024-07-14

### Fixed

- The `validate-branch-name` action now allows `NO-ISSUE` instead of a `GH-` issue prefix.
- The `resolve-issue-locking` action now just runs once a week.

## [0.16.4] - 2024-07-10

### Fixed
Expand Down Expand Up @@ -320,7 +327,9 @@ to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
- Gradle helpers for Fabric and Forge projects.
- CI workflows.

[Unreleased]: https://github.com/refinedmods/refinedarchitect/compare/v0.16.4...HEAD
[Unreleased]: https://github.com/refinedmods/refinedarchitect/compare/v0.16.5...HEAD

[0.16.5]: https://github.com/refinedmods/refinedarchitect/compare/v0.16.4...v0.16.5

[0.16.4]: https://github.com/refinedmods/refinedarchitect/compare/v0.16.3...v0.16.4

Expand Down
Loading