Skip to content

Commit

Permalink
v1.10.0
Browse files Browse the repository at this point in the history
- Fix reversed bot state reporting, Thanks [@grelca](https://github.com/grelca) [#207](#207)
- Add support for Curtain 3, Thanks [@tsia](https://github.com/tsia) [#209](#209)
- Housekeeping and update dependencies

**Full Changelog**: v1.9.1...v1.10.0
  • Loading branch information
donavanbecker committed Jan 5, 2024
1 parent aeda22c commit 47f5a3a
Show file tree
Hide file tree
Showing 9 changed files with 174 additions and 106 deletions.
39 changes: 34 additions & 5 deletions .github/labeler.yml
Original file line number Diff line number Diff line change
@@ -1,9 +1,38 @@
# Add 'enhancement' label to any change to index.js file
# Add 'branding' label to any changes within 'docs' folder or any subfolders
branding:
- changed-files:
- any-glob-to-any-file: branding/**

# Add 'docs' label to any change to .md files within the entire repository
docs:
- changed-files:
- any-glob-to-any-file: '**/*.md'

# Add 'enhancement' label to any change to src files within the source dir EXCEPT for the docs sub-folder
enhancement:
- lib/*
- package.json
- pakcage-lock.json
- 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'

# Add 'beta' label to any PR that is opened against the `beta` branch
beta:
- base-branch: 'beta*'

# Add 'alpha' label to any PR that is opened against the `alpha` branch
alpha:
- base-branch: 'alpha*'

# Add 'latest' label to any PR that is opened against the `latest` branch
latest:
- base-branch: 'latest'

# Add 'workflow' to any changes within 'workflow' folder or any subfolders
workflow:
- .github/workflows/*
- changed-files:
- any-glob-to-any-file: .github/**
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: OpenWonderLabs/.github/.github/workflows/changerelease.yml@latest
secrets:
token: ${{ secrets.GITHUB_TOKEN }}
Loading

0 comments on commit 47f5a3a

Please sign in to comment.