Skip to content

Commit 031d047

Browse files
committed
v1.10.0
- 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
1 parent aeda22c commit 031d047

File tree

9 files changed

+180
-106
lines changed

9 files changed

+180
-106
lines changed

.github/labeler.yml

Lines changed: 34 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,38 @@
1-
# Add 'enhancement' label to any change to index.js file
1+
# Add 'branding' label to any changes within 'docs' folder or any subfolders
2+
branding:
3+
- changed-files:
4+
- any-glob-to-any-file: branding/**
5+
6+
# Add 'docs' label to any change to .md files within the entire repository
7+
docs:
8+
- changed-files:
9+
- any-glob-to-any-file: '**/*.md'
10+
11+
# Add 'enhancement' label to any change to src files within the source dir EXCEPT for the docs sub-folder
212
enhancement:
3-
- lib/*
4-
- package.json
5-
- pakcage-lock.json
13+
- changed-files:
14+
- any-glob-to-any-file: 'src/**/*'
15+
- any-glob-to-any-file: 'config.schema.json'
16+
17+
# Add 'dependencies' label to any change to src files within the source dir EXCEPT for the docs sub-folder
18+
dependencies:
19+
- changed-files:
20+
- any-glob-to-any-file: 'package.json'
21+
- any-glob-to-any-file: 'package-lock.json'
22+
23+
# Add 'beta' label to any PR that is opened against the `beta` branch
24+
beta:
25+
- base-branch: 'beta*'
26+
27+
# Add 'alpha' label to any PR that is opened against the `alpha` branch
28+
alpha:
29+
- base-branch: 'alpha*'
30+
31+
# Add 'latest' label to any PR that is opened against the `latest` branch
32+
latest:
33+
- base-branch: 'latest'
634

735
# Add 'workflow' to any changes within 'workflow' folder or any subfolders
836
workflow:
9-
- .github/workflows/*
37+
- changed-files:
38+
- any-glob-to-any-file: .github/**
Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
name: Changelog to Release
2+
3+
on:
4+
workflow_dispatch:
5+
push:
6+
paths: [CHANGELOG.md]
7+
branches: [latest]
8+
9+
jobs:
10+
changerelease:
11+
uses: OpenWonderLabs/.github/.github/workflows/changerelease.yml@latest
12+
secrets:
13+
token: ${{ secrets.GITHUB_TOKEN }}

0 commit comments

Comments
 (0)