Skip to content

Commit f058041

Browse files
committed
changing how it references link
1 parent 0774134 commit f058041

File tree

1 file changed

+21
-21
lines changed

1 file changed

+21
-21
lines changed

.github/workflows/ci.yml

Lines changed: 21 additions & 21 deletions
Original file line numberDiff line numberDiff line change
@@ -1,23 +1,23 @@
11
---
2-
name: ci
3-
on:
4-
pull_request:
5-
branches: [main]
6-
workflow_dispatch:
7-
inputs:
8-
APT_SOURCES:
9-
required: false
10-
type: string
11-
jobs:
12-
Spec:
13-
if: ${{ github.repository_owner == 'puppetlabs' }}
14-
uses: puppetlabs/cat-github-actions/.github/workflows/module_ci.yml@main
15-
secrets: inherit
16-
Acceptance:
17-
if: ${{ github.repository_owner == 'puppetlabs' }}
18-
needs: Spec
19-
uses: puppetlabs/cat-github-actions/.github/workflows/module_acceptance.yml@main
20-
with:
21-
flags: --provision-service
2+
name: ci
3+
on:
4+
pull_request:
5+
branches: [main]
6+
workflow_dispatch:
7+
inputs:
8+
APT_SOURCES:
9+
required: false
10+
default: 'https://artifactory.delivery.puppetlabs.net:443/artifactory/internal_nightly__local/apt'
11+
jobs:
12+
Spec:
13+
if: ${{ github.repository_owner == 'puppetlabs' }}
14+
uses: puppetlabs/cat-github-actions/.github/workflows/module_ci.yml@main
2215
secrets: inherit
23-
APT_SOURCES: "https://artifactory.delivery.puppetlabs.net:443/artifactory/internal_nightly__local/apt"
16+
Acceptance:
17+
if: ${{ github.repository_owner == 'puppetlabs' }}
18+
needs: Spec
19+
uses: puppetlabs/cat-github-actions/.github/workflows/module_acceptance.yml@main
20+
with:
21+
flags: --provision-service
22+
APT_SOURCES: ${{ github.event.inputs.APT_SOURCES }}
23+
secrets: inherit

0 commit comments

Comments
 (0)