Skip to content

Commit df726a8

Browse files
authored
Merge branch 'main' into migration
2 parents 5f5ab8f + 237f774 commit df726a8

33 files changed

+598
-331
lines changed

.editorconfig

Lines changed: 0 additions & 15 deletions
This file was deleted.

.fixtures.yml

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
fixtures:
2+
repositories:
3+
facts: 'https://github.com/puppetlabs/puppetlabs-facts.git'
4+
puppet_agent:
5+
repo: 'https://github.com/puppetlabs/puppetlabs-puppet_agent.git'
6+
ref: v4.13.0
7+
stdlib: https://github.com/puppetlabs/puppetlabs-stdlib.git
8+
registry: https://github.com/puppetlabs/puppetlabs-registry.git
9+
provision: 'https://github.com/puppetlabs/provision.git'

.github/ISSUE_TEMPLATE.md

Lines changed: 0 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,3 @@
1-
<!--
2-
Thank you for contributing to this project!
3-
4-
- This project has a Contributor Code of Conduct: https://voxpupuli.org/coc/
5-
- Please check that here is no existing issue or PR that addresses your problem.
6-
- Please fill the following form to enable us to help you.
7-
- Our vulnerabilities reporting process is at https://voxpupuli.org/security/
8-
9-
-->
10-
111
## Affected Puppet, Ruby, OS and module versions/distributions
122

133
- Puppet:

.github/PULL_REQUEST_TEMPLATE.md

Lines changed: 12 additions & 17 deletions
Original file line numberDiff line numberDiff line change
@@ -1,20 +1,15 @@
1-
<!--
2-
Thank you for contributing to this project!
1+
## Summary
2+
Provide a detailed description of all the changes present in this pull request.
33

4-
- This project has a Contributor Code of Conduct: https://voxpupuli.org/coc/
5-
- Please check that here is no existing issue or PR that addresses your problem.
6-
- Our vulnerabilities reporting process is at https://voxpupuli.org/security/
4+
## Additional Context
5+
Add any additional context about the problem here.
6+
- [ ] Root cause and the steps to reproduce. (If applicable)
7+
- [ ] Thought process behind the implementation.
78

8-
-->
9-
#### Pull Request (PR) description
10-
<!--
11-
Replace this comment with a description of your pull request.
12-
-->
9+
## Related Issues (if any)
10+
Mention any related issues or pull requests.
1311

14-
#### This Pull Request (PR) fixes the following issues
15-
<!--
16-
Replace this comment with the list of issues or n/a.
17-
Use format:
18-
Fixes #123
19-
Fixes #124
20-
-->
12+
## Checklist
13+
- [ ] 🟢 Spec tests.
14+
- [ ] 🟢 Acceptance tests.
15+
- [ ] Manually verified.

.github/workflows/ci.yml

Lines changed: 14 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -1,16 +1,17 @@
1-
---
2-
# Managed by modulesync - DO NOT EDIT
3-
# https://voxpupuli.org/docs/updating-files-managed-with-modulesync/
1+
name: "ci"
42

5-
name: CI
6-
7-
on: pull_request
8-
9-
concurrency:
10-
group: ${{ github.ref_name }}
11-
cancel-in-progress: true
3+
on:
4+
pull_request:
5+
branches:
6+
- "main"
7+
workflow_dispatch:
128

139
jobs:
14-
puppet:
15-
name: Puppet
16-
uses: voxpupuli/gha-puppet/.github/workflows/basic.yml@v1
10+
Spec:
11+
uses: "puppetlabs/cat-github-actions/.github/workflows/module_ci.yml@main"
12+
secrets: "inherit"
13+
14+
Acceptance:
15+
needs: Spec
16+
uses: "puppetlabs/cat-github-actions/.github/workflows/module_acceptance.yml@main"
17+
secrets: "inherit"

.github/workflows/labeller.yml

Lines changed: 27 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,27 @@
1+
name: Labeller
2+
3+
on:
4+
issues:
5+
types:
6+
- opened
7+
- labeled
8+
- unlabeled
9+
pull_request_target:
10+
types:
11+
- opened
12+
- labeled
13+
- unlabeled
14+
15+
jobs:
16+
label:
17+
runs-on: ubuntu-latest
18+
steps:
19+
20+
- uses: puppetlabs/[email protected]
21+
name: Label issues or pull requests
22+
with:
23+
label_name: community
24+
label_color: '5319e7'
25+
org_membership: puppetlabs
26+
fail_if_member: 'true'
27+
token: ${{ secrets.IAC_COMMUNITY_LABELER }}

.github/workflows/mend.yml

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,15 @@
1+
name: "mend"
2+
3+
on:
4+
pull_request:
5+
branches:
6+
- "main"
7+
schedule:
8+
- cron: "0 0 * * *"
9+
workflow_dispatch:
10+
11+
jobs:
12+
13+
mend:
14+
uses: "puppetlabs/cat-github-actions/.github/workflows/mend_ruby.yml@main"
15+
secrets: "inherit"

.github/workflows/nightly.yml

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,16 @@
1+
name: "nightly"
2+
3+
on:
4+
schedule:
5+
- cron: "0 0 * * *"
6+
workflow_dispatch:
7+
8+
jobs:
9+
Spec:
10+
uses: "puppetlabs/cat-github-actions/.github/workflows/module_ci.yml@main"
11+
secrets: "inherit"
12+
13+
Acceptance:
14+
needs: Spec
15+
uses: "puppetlabs/cat-github-actions/.github/workflows/module_acceptance.yml@main"
16+
secrets: "inherit"

.github/workflows/release.yml

Lines changed: 5 additions & 18 deletions
Original file line numberDiff line numberDiff line change
@@ -1,22 +1,9 @@
1-
---
2-
# Managed by modulesync - DO NOT EDIT
3-
# https://voxpupuli.org/docs/updating-files-managed-with-modulesync/
4-
5-
name: Release
1+
name: "Publish module"
62

73
on:
8-
push:
9-
tags:
10-
- '*'
4+
workflow_dispatch:
115

126
jobs:
13-
release:
14-
name: Release
15-
uses: voxpupuli/gha-puppet/.github/workflows/release.yml@v1
16-
with:
17-
allowed_owner: 'voxpupuli'
18-
secrets:
19-
# Configure secrets here:
20-
# https://docs.github.com/en/actions/security-guides/encrypted-secrets
21-
username: ${{ secrets.PUPPET_FORGE_USERNAME }}
22-
api_key: ${{ secrets.PUPPET_FORGE_API_KEY }}
7+
release:
8+
uses: "puppetlabs/cat-github-actions/.github/workflows/module_release.yml@main"
9+
secrets: "inherit"

.github/workflows/release_prep.yml

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,15 @@
1+
name: "Release Prep"
2+
3+
on:
4+
workflow_dispatch:
5+
inputs:
6+
version:
7+
description: "Module version to be released. Must be a valid semver string. (1.2.3)"
8+
required: true
9+
10+
jobs:
11+
release_prep:
12+
uses: "puppetlabs/cat-github-actions/.github/workflows/module_release_prep.yml@main"
13+
with:
14+
version: "${{ github.event.inputs.version }}"
15+
secrets: "inherit"

0 commit comments

Comments
 (0)