Skip to content

Commit 164e00c

Browse files
committed
(maint) use pending cat workflows
1 parent 45c6d4a commit 164e00c

File tree

7 files changed

+17
-29
lines changed

7 files changed

+17
-29
lines changed

.github/workflows/ci.yml

+4-2
Original file line numberDiff line numberDiff line change
@@ -8,12 +8,14 @@ on:
88

99
jobs:
1010
Spec:
11-
uses: "puppetlabs/cat-github-actions/.github/workflows/module_ci.yml@main"
11+
uses: "puppetlabs/cat-github-actions/.github/workflows/module_ci.yml@forked-modules"
1212
secrets: "inherit"
1313

1414
Acceptance:
1515
needs: Spec
16-
uses: "puppetlabs/cat-github-actions/.github/workflows/module_acceptance.yml@main"
16+
uses: "puppetlabs/cat-github-actions/.github/workflows/module_acceptance.yml@forked-modules"
1717
secrets: "inherit"
1818
with:
1919
runs_on: ubuntu-20.04
20+
kernel_modules: false
21+
disable_apparmor: true

.github/workflows/labeller.yml

+5-19
Original file line numberDiff line numberDiff line change
@@ -2,26 +2,12 @@ name: Labeller
22

33
on:
44
issues:
5-
types:
6-
- opened
7-
- labeled
8-
- unlabeled
5+
types: [ opened, reopened, labeled, unlabeled ]
96
pull_request_target:
10-
types:
11-
- opened
12-
- labeled
13-
- unlabeled
7+
types: [ opened, reopened, labeled, unlabeled ]
148

159
jobs:
1610
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 }}
11+
if: contains(fromJson('["puppetlabs", "puppet-toy-chest"]'), github.repository_owner)
12+
uses: "puppetlabs/cat-github-actions/.github/workflows/labeller.yml@forked-modules"
13+
secrets: inherit

.github/workflows/mend.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -12,5 +12,5 @@ on:
1212
jobs:
1313

1414
mend:
15-
uses: "puppetlabs/cat-github-actions/.github/workflows/mend_ruby.yml@main"
15+
uses: "puppetlabs/cat-github-actions/.github/workflows/mend_ruby.yml@forked-modules"
1616
secrets: "inherit"

.github/workflows/nightly.yml

+2-2
Original file line numberDiff line numberDiff line change
@@ -7,10 +7,10 @@ on:
77

88
jobs:
99
Spec:
10-
uses: "puppetlabs/cat-github-actions/.github/workflows/module_ci.yml@main"
10+
uses: "puppetlabs/cat-github-actions/.github/workflows/module_ci.yml@forked-modules"
1111
secrets: "inherit"
1212

1313
Acceptance:
1414
needs: Spec
15-
uses: "puppetlabs/cat-github-actions/.github/workflows/module_acceptance.yml@main"
15+
uses: "puppetlabs/cat-github-actions/.github/workflows/module_acceptance.yml@forked-modules"
1616
secrets: "inherit"

.github/workflows/release.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -5,5 +5,5 @@ on:
55

66
jobs:
77
release:
8-
uses: "puppetlabs/cat-github-actions/.github/workflows/module_release.yml@main"
8+
uses: "puppetlabs/cat-github-actions/.github/workflows/module_release.yml@forked-modules"
99
secrets: "inherit"

.github/workflows/release_prep.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ on:
99

1010
jobs:
1111
release_prep:
12-
uses: "puppetlabs/cat-github-actions/.github/workflows/module_release_prep.yml@main"
12+
uses: "puppetlabs/cat-github-actions/.github/workflows/module_release_prep.yml@forked-modules"
1313
with:
1414
version: "${{ github.event.inputs.version }}"
1515
secrets: "inherit"

.sync.yml

+3-3
Original file line numberDiff line numberDiff line change
@@ -11,11 +11,11 @@ spec/spec_helper.rb:
1111
.github/workflows/ci.yml:
1212
unmanaged: true
1313
.github/workflows/nightly.yml:
14-
unmanaged: false
14+
unmanaged: true
1515
.github/workflows/release_prep.yml:
16-
unmanaged: false
16+
unmanaged: true
1717
.github/workflows/release.yml:
18-
unmanaged: false
18+
unmanaged: true
1919

2020
Rakefile:
2121
changelog_since_tag: 'v11.0.3'

0 commit comments

Comments
 (0)