Skip to content
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
22 changes: 22 additions & 0 deletions .github/labeler-config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,3 +20,25 @@
- '\bquestion(s)?\b'
- '\bhelp\b'
- '\bhow to\b'

"performance":
- '\bperformance\b'
- '\boptimiz(e|ation)\b'
- '\bspeed\b'
- '\befficiency\b'

"dependencies":
- '\bchore\(deps\)\b'
- '\bfix\(deps\)\b'

"ci":
- '\bci\b'
- '\bcontinuous integration\b'
- '\bbuild\b'
- '\bworkflow\b'

"chore":
- '\bchore\b'
- '\bmaintenance\b'
- '\brefactor\b'
- '\bcleanup\b'
6 changes: 6 additions & 0 deletions .github/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -24,6 +24,12 @@ changelog:
- title: "Dependencies"
labels:
- "dependencies"
- title: "Continuous Integration"
labels:
- "ci"
- title: "Chores"
labels:
- "chore"
- title: "Other Changes"
labels:
- "*"
22 changes: 22 additions & 0 deletions .github/workflows/labeler.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@
name: "Labeler"

on:
issues:
types: [opened, edited]
pull_request_target:
types: [opened, edited]

jobs:
triage:
permissions:
contents: read
issues: write
pull-requests: write
runs-on: ubuntu-latest
steps:
- name: Apply Labels
uses: github/issue-labeler@v3.4
with:
repo-token: "${{ secrets.GITHUB_TOKEN }}"
configuration-path: .github/labeler-config.yml
enable-versioned-regex: 0
4 changes: 3 additions & 1 deletion .goreleaser.yml
Original file line number Diff line number Diff line change
Expand Up @@ -73,7 +73,9 @@ release:
# Add a footer to the release notes featuring full changelog.
footer: |
---
**Full Changelog**: https://github.com/floatpane/matcha/compare/{{ .PreviousTag }}...{{ .Tag }}
This version is also available on **[Snapcraft](https://snapcraft.io/matcha)**, **Homebrew**, **[Flatpak](https://matcha.floatpane.com/matcha.flatpakref)**!

View the [installation instructions](https://github.com/floatpane/matcha/blob/master/docs/INSTALLATION.md) for more details.

# 'brews' configures the Homebrew tap integration.
brews:
Expand Down