Skip to content

Commit

Permalink
Merge pull request #66 from voxpupuli/use-shared-wokflows
Browse files Browse the repository at this point in the history
Use shared worflows from crafty
  • Loading branch information
rwaffen authored Apr 15, 2024
2 parents 904d394 + 0df52c7 commit 99da890
Show file tree
Hide file tree
Showing 6 changed files with 47 additions and 10 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:
- "*"
1 change: 1 addition & 0 deletions .github/workflows/build_docker.yml
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
---
name: Build and publish a 🛢️ container

on:
Expand Down
3 changes: 2 additions & 1 deletion .github/workflows/ci.yaml
Original file line number Diff line number Diff line change
@@ -1,11 +1,12 @@
---
name: CI🚦

on:
pull_request: {}
push:
branches:
- main

name: CI

jobs:
general_ci:
Expand Down
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"
---
name: Labeler 🏷️

on:
- pull_request_target
- pull_request_target

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 }}
14 changes: 14 additions & 0 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
---
name: Release 🚀

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 99da890

Please sign in to comment.