Skip to content
Merged
Show file tree
Hide file tree
Changes from 2 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
29 changes: 29 additions & 0 deletions .github/release.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,29 @@
changelog:
exclude:
labels:
- skip changelog
categories:
- title: 💣 Breaking Changes
labels:
- change
- title: 🚀 Features
labels:
- enhancement
- title: 🐛 Bug Fixes
labels:
- bug
- title: 🧪 Tests
labels:
- tests
- title: 🔨 Maintenance
labels:
- chore
- title: 📝 Documentation
labels:
- documentation
- title: ⬆️ Dependencies
labels:
- dependencies
- title: Other Changes
labels:
- "*"
22 changes: 22 additions & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,29 @@
permissions:
contents: read

concurrency:
group: ${{ github.ref_name }}-ci
cancel-in-progress: true

jobs:
release-notes:
name: Create/Update release notes
permissions:
contents: write
Comment thread
coderabbitai[bot] marked this conversation as resolved.
runs-on: ubuntu-24.04
Comment thread
lucacome marked this conversation as resolved.
steps:
- name: Checkout Repository
uses: actions/checkout@v7

- name: Create/Update Draft
uses: lucacome/draft-release@v2.2.1
Comment thread
lucacome marked this conversation as resolved.
Dismissed
with:
minor-label: "enhancement"
major-label: "change"
publish: ${{ github.ref_type == 'tag' }}
collapse-after: 50
if: github.event_name != 'pull_request'
Comment thread
coderabbitai[bot] marked this conversation as resolved.
Outdated

test:
name: Test
runs-on: ubuntu-24.04
Expand Down
27 changes: 27 additions & 0 deletions .github/workflows/labeler.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,27 @@
name: Pull Request Labeler
on:
- pull_request_target

permissions:
contents: read

jobs:
triage:
permissions:
contents: read
pull-requests: write
runs-on: ubuntu-24.04
steps:
- uses: actions/checkout@v7
with:
sparse-checkout: |
labeler.yml
sparse-checkout-cone-mode: false
repository: opentracing-contrib/common

- uses: actions/labeler@v7
continue-on-error: true
Comment thread
lucacome marked this conversation as resolved.
with:
repo-token: "${{ secrets.GITHUB_TOKEN }}"
sync-labels: true
configuration-path: labeler.yml
Loading