Skip to content

Commit

Permalink
Merge branch 'main' into systemd-for-raspbian-7.x
Browse files Browse the repository at this point in the history
  • Loading branch information
jaevans authored Apr 12, 2024
2 parents 2dc127f + 0fdd52b commit d4c9652
Show file tree
Hide file tree
Showing 1,206 changed files with 23,379 additions and 22,604 deletions.
2 changes: 1 addition & 1 deletion .gemspec
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@

Gem::Specification.new do |s|
s.name = "puppet"
version = "8.4.0"
version = "8.7.0"
mdata = version.match(/(\d+\.\d+\.\d+)/)
s.version = mdata ? mdata[1] : version

Expand Down
8 changes: 8 additions & 0 deletions .github/release.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
changelog:
categories:
- title: Features & Enhancements
labels:
- enhancement
- title: Bug Fixes
labels:
- bug
19 changes: 19 additions & 0 deletions .github/workflows/backport.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
name: Backport merged pull request
on:
pull_request_target:
types: [labeled]
permissions:
contents: write # so it can comment
pull-requests: write # so it can create pull requests
jobs:
backport:
name: Backport merged pull request
runs-on: ubuntu-latest
# For security reasons, we don't want to checkout and run arbitrary code when
# using the pull_request_target trigger. So restrict this to cases where the
# backport label is applied to an already merged PR.
if: github.event.pull_request.merged && contains(github.event.label.name, 'backport')
steps:
- uses: actions/checkout@v4
- name: Create backport pull requests
uses: korthout/backport-action@v1
Loading

0 comments on commit d4c9652

Please sign in to comment.