Skip to content

Commit

Permalink
Merge pull request #16 from MapIV/chore/release-drafter
Browse files Browse the repository at this point in the history
Chore/release drafter
  • Loading branch information
urasakikeisuke authored May 15, 2024
2 parents 86ae71c + a993a84 commit cd9da58
Show file tree
Hide file tree
Showing 2 changed files with 70 additions and 0 deletions.
44 changes: 44 additions & 0 deletions .github/release-drafter.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,44 @@
name-template: 'v$RESOLVED_VERSION 🌈'

tag-template: 'v$RESOLVED_VERSION'

categories:
- title: '🚀 Features'
labels:
- 'rd/feature'

- title: '🐛 Bug Fixes'
labels:
- 'rd/fix'

- title: '🧰 Maintenance'
labels:
- 'rd/chore'

- title: '📄 Documentation'
labels:
- 'rd/docs'

change-template: '- $TITLE @$AUTHOR (#$NUMBER)'

change-title-escapes: '\<*_&'

version-resolver:
major:
labels:
- 'rd/major'

minor:
labels:
- 'rd/minor'

patch:
labels:
- 'rd/patch'

default: patch

template: |
## Changes
$CHANGES
26 changes: 26 additions & 0 deletions .github/workflows/release-drafter.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,26 @@
name: Release Drafter

on:
push:
branches:
- main

workflow_dispatch:

permissions:
contents: read

jobs:
update_release_draft:
permissions:
contents: write
pull-requests: write

runs-on: ubuntu-latest

steps:
- uses: release-drafter/release-drafter@v6
with:
disable-autolabeler: true
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}

5 comments on commit cd9da58

@github-actions
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Coverage

Coverage Report
FileStmtsMissCoverMissing
src/pypcd4
   __init__.py20100% 
   _version.py11282%5–6
   pointcloud2.py591280%87–101
   pypcd4.py3893392%23–24, 107, 135, 188, 349–350, 572–594, 607–648, 658–659, 878, 898–899, 1022, 1025
TOTAL4614790% 

Tests Skipped Failures Errors Time
63 0 💤 0 ❌ 0 🔥 0.617s ⏱️

@github-actions
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Coverage

Coverage Report
FileStmtsMissCoverMissing
src/pypcd4
   __init__.py20100% 
   _version.py11282%5–6
   pointcloud2.py591280%87–101
   pypcd4.py3893392%23–24, 107, 135, 188, 349–350, 572–594, 607–648, 658–659, 878, 898–899, 1022, 1025
TOTAL4614790% 

Tests Skipped Failures Errors Time
63 0 💤 0 ❌ 0 🔥 0.616s ⏱️

@github-actions
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Coverage

Coverage Report
FileStmtsMissCoverMissing
src/pypcd4
   __init__.py20100% 
   _version.py11282%5–6
   pointcloud2.py591280%87–101
   pypcd4.py3893392%23–24, 107, 135, 188, 349–350, 572–594, 607–648, 658–659, 878, 898–899, 1022, 1025
TOTAL4614790% 

Tests Skipped Failures Errors Time
63 0 💤 0 ❌ 0 🔥 0.653s ⏱️

@github-actions
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Coverage

Coverage Report
FileStmtsMissCoverMissing
src/pypcd4
   __init__.py20100% 
   _version.py11282%5–6
   pointcloud2.py591280%87–101
   pypcd4.py3893392%23–24, 107, 135, 188, 349–350, 572–594, 607–648, 658–659, 878, 898–899, 1022, 1025
TOTAL4614790% 

Tests Skipped Failures Errors Time
63 0 💤 0 ❌ 0 🔥 0.661s ⏱️

@github-actions
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Coverage

Coverage Report
FileStmtsMissCoverMissing
src/pypcd4
   __init__.py20100% 
   _version.py11282%5–6
   pointcloud2.py591280%87–101
   pypcd4.py3893392%23–24, 107, 135, 188, 349–350, 572–594, 607–648, 658–659, 878, 898–899, 1022, 1025
TOTAL4614790% 

Tests Skipped Failures Errors Time
63 0 💤 0 ❌ 0 🔥 0.690s ⏱️

Please sign in to comment.