Skip to content

Commit

Permalink
Merge pull request #80 from voxpupuli/use-shared-wokflows
Browse files Browse the repository at this point in the history
use shared workflows from crafty
  • Loading branch information
rwaffen authored Apr 12, 2024
2 parents b50ebf6 + fc47fa9 commit f712144
Show file tree
Hide file tree
Showing 4 changed files with 42 additions and 9 deletions.
3 changes: 2 additions & 1 deletion .github/labeler.yml
Original file line number Diff line number Diff line change
@@ -1,2 +1,3 @@
---
skip-changelog:
- head-branch: ['^release-*', 'release']
- head-branch: ['^release-*']
20 changes: 20 additions & 0 deletions .github/release.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
---
# https://docs.github.com/en/repositories/releasing-projects-on-github/automatically-generated-release-notes

changelog:
exclude:
labels:
- skip-changelog

categories:
- title: Breaking Changes 🛠
labels:
- backwards-incompatible

- title: New Features 🎉
labels:
- enhancement

- title: Other Changes
labels:
- "*"
16 changes: 8 additions & 8 deletions .github/workflows/labeler.yml
Original file line number Diff line number Diff line change
@@ -1,12 +1,12 @@
name: "Pull Request Labeler"
---
on:
- pull_request_target
push:
tags:
- '*'

jobs:
labeler:
permissions:
contents: read
pull-requests: write
runs-on: ubuntu-latest
steps:
- uses: actions/labeler@v5
name: Labeler
uses: voxpupuli/crafty/.github/workflows/labeler.yml@main
with:
allowed_owner: ${{ github.repository_owner }}
12 changes: 12 additions & 0 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
---
on:
push:
tags:
- '*'

jobs:
release:
name: Release
uses: voxpupuli/crafty/.github/workflows/release.yml@main
with:
allowed_owner: ${{ github.repository_owner }}

0 comments on commit f712144

Please sign in to comment.