-
Notifications
You must be signed in to change notification settings - Fork 9
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #31 from iPromKnight/hotfix/indexer_support
fix: Ensure infohashes only 40 chars in results
- Loading branch information
Showing
8 changed files
with
559 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,15 @@ | ||
name: Conventional Commits | ||
|
||
on: | ||
pull_request: | ||
branches: [ main ] | ||
|
||
jobs: | ||
build: | ||
name: Conventional Commits | ||
runs-on: ubuntu-latest | ||
steps: | ||
- uses: actions/[email protected] | ||
- uses: webiny/[email protected] | ||
with: | ||
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,19 @@ | ||
name: "Release Please" | ||
|
||
on: | ||
push: | ||
branches: | ||
- main | ||
workflow_dispatch: | ||
|
||
permissions: | ||
contents: write | ||
pull-requests: write | ||
|
||
jobs: | ||
release-please: | ||
runs-on: ubuntu-latest | ||
steps: | ||
- uses: googleapis/release-please-action@v4 | ||
with: | ||
token: ${{ secrets.RELEASE_PLEASE_TOKEN }} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
{ | ||
".": "2.0.1" | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,25 @@ | ||
{ | ||
"$schema": "https://raw.githubusercontent.com/googleapis/release-please/main/schemas/config.json", | ||
"packages": { | ||
".": { | ||
"changelog-path": "CHANGELOG.md", | ||
"release-type": "simple", | ||
"extra-files": ["Directory.Build.props"], | ||
"changelog-sections": [ | ||
{ "type": "feat", "section": "🚀 New Features", "hidden": false }, | ||
{ "type": "feature", "section": "🚀 New Features", "hidden": false }, | ||
{ "type": "enhance", "section": "💅 Enhancements", "hidden": false }, | ||
{ "type": "fix", "section": "🔥 Bug Fixes", "hidden": false }, | ||
{ "type": "perf", "section": "🏃 Performance Improvements", "hidden": false }, | ||
{ "type": "revert", "section": "↩️ Reverts", "hidden": true }, | ||
{ "type": "docs", "section": "📚 Documentation", "hidden": false }, | ||
{ "type": "style", "section": "🎨 Code Style", "hidden": false }, | ||
{ "type": "chore", "section": "⚙️ Chores", "hidden": false }, | ||
{ "type": "refactor", "section": "⌨️ Code Refactoring", "hidden": false }, | ||
{ "type": "test", "section": "🧪 Automated Testing", "hidden": false }, | ||
{ "type": "build", "section": "🛠️ Build System", "hidden": false }, | ||
{ "type": "ci", "section": "📦 CI Improvements", "hidden": false } | ||
] | ||
} | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.