Skip to content

Commit

Permalink
v3.0.0
Browse files Browse the repository at this point in the history
## [Version 3.0.0](https://github.com/donavanbecker/homebridge-noip/releases/tag/v3.0.0) (2023-12-23)

### What's Changes
- Moved from CommonJS to ES Module
- Housekeeping and updated dependencies.

**Full Changelog**: v2.0.4...v3.0.0
  • Loading branch information
donavanbecker committed Dec 23, 2023
1 parent 52354ab commit 274cf06
Show file tree
Hide file tree
Showing 3 changed files with 21 additions and 2 deletions.
7 changes: 5 additions & 2 deletions .github/labeler.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,12 +10,15 @@ docs:

# Add 'enhancement' label to any change to src files within the source dir EXCEPT for the docs sub-folder
enhancement:
- all:
- changed-files:
- any-glob-to-any-file: 'src/**/*'
- any-glob-to-any-file: 'config.schema.json'

# Add 'dependencies' label to any change to src files within the source dir EXCEPT for the docs sub-folder
dependencies:
- changed-files:
- any-glob-to-any-file: 'package.json'
- any-glob-to-any-file: 'package-lock.json'
- any-glob-to-any-file: 'config.schema.json'

# Add 'beta' label to any PR that is opened against the `beta` branch
beta:
Expand Down
3 changes: 3 additions & 0 deletions .github/release-drafter.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,9 @@ categories:
- title: 'Enhancements'
labels:
- 'enhancement'
- title: 'Updated Dependencies'
labels:
- 'dependencies'
- title: 'Documentation'
labels:
- 'docs'
Expand Down
13 changes: 13 additions & 0 deletions .github/workflows/changerelease.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
name: Changelog to Release

on:
workflow_dispatch:
push:
paths: [CHANGELOG.md]
branches: [latest]

jobs:
changerelease:
uses: donavanbecker/.github/.github/workflows/changerelease.yml@latest
secrets:
token: ${{ secrets.GITHUB_TOKEN }}

0 comments on commit 274cf06

Please sign in to comment.