Unverified Commit d4058dc4 authored by Tim Meusel's avatar Tim Meusel Committed by GitHub
Browse files

Merge pull request #392 from voxpupuli/modulesync

modulesync 9.1.0
parents 2e099248 7ff19f32
Loading
Loading
Loading
Loading
+10 −2
Original line number Diff line number Diff line
@@ -245,15 +245,23 @@ with:
BEAKER_PUPPET_COLLECTION=puppet7 BEAKER_setfile=debian11-64 bundle exec rake beaker
```

or

```sh
BEAKER_PUPPET_COLLECTION=none BEAKER_setfile=archlinux-64 bundle exec rake beaker
```

This latter example will use the distribution's own version of Puppet.

You can replace the string `debian11` with any common operating system.
The following strings are known to work:

* ubuntu2004
* ubuntu2204
* debian11
* centos7
* centos8
* debian12
* centos9
* archlinux
* almalinux8
* almalinux9
* fedora36
+3 −0
Original line number Diff line number Diff line
---
# Managed by modulesync - DO NOT EDIT
# https://voxpupuli.org/docs/updating-files-managed-with-modulesync/

skip-changelog:
 - head-branch: ['^release-*', 'release']

.github/release.yml

0 → 100644
+42 −0
Original line number Diff line number Diff line
---
# Managed by modulesync - DO NOT EDIT
# https://voxpupuli.org/docs/updating-files-managed-with-modulesync/

# https://docs.github.com/en/repositories/releasing-projects-on-github/automatically-generated-release-notes

changelog:
  exclude:
    labels:
      - duplicate
      - invalid
      - modulesync
      - question
      - skip-changelog
      - wont-fix
      - wontfix

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

    - title: New Features 🎉
      labels:
        - enhancement

    - title: Bug Fixes 🐛
      labels:
        - bug

    - title: Documentation Updates 📚
      labels:
        - documentation
        - docs

    - title: Dependency Updates ⬆️
      labels:
        - dependencies

    - title: Other Changes
      labels:
        - "*"
+17 −0
Original line number Diff line number Diff line
---
# Managed by modulesync - DO NOT EDIT
# https://voxpupuli.org/docs/updating-files-managed-with-modulesync/

name: "Pull Request Labeler"

on:
  pull_request_target: {}

jobs:
  labeler:
    permissions:
      contents: read
      pull-requests: write
    runs-on: ubuntu-latest
    steps:
    - uses: actions/labeler@v5
+7 −0
Original line number Diff line number Diff line
@@ -20,3 +20,10 @@ jobs:
      #  https://docs.github.com/en/actions/security-guides/encrypted-secrets
      username: ${{ secrets.PUPPET_FORGE_USERNAME }}
      api_key: ${{ secrets.PUPPET_FORGE_API_KEY }}

  create-github-release:
    name: Create GitHub Release
    runs-on: ubuntu-latest
    steps:
      - name: Create GitHub release
        uses: voxpupuli/gha-create-a-github-release@v1
Loading