Skip to content

Commit 8e51138

Browse files
committed
ci(MODULES-11557): add Twingate setup step to GitHub Actions workflow
Adds the Twingate installation step in `.github/workflows/...` using `twingate/github-action@v1`. The action uses the `${{ secrets.TWINGATE_KEY }}` to establish secure access to internal resources. This enables the workflow to access protected infrastructure during CI runs.
1 parent c741766 commit 8e51138

File tree

2 files changed

+10
-0
lines changed

2 files changed

+10
-0
lines changed

.github/workflows/ci.yml

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -19,6 +19,11 @@ jobs:
1919
matrix: {'platform':['rhel-8', 'debian-11'],'collection':['puppet7-nightly', 'puppet8-nightly']}
2020

2121
steps:
22+
- name: "Install Twingate"
23+
uses: "twingate/github-action@v1"
24+
with:
25+
service-key: ${{ secrets.TWINGATE_PUBLIC_REPO_KEY }}
26+
2227
- name: Checkout Source
2328
uses: actions/checkout@v3
2429

.github/workflows/nightly.yml

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -17,6 +17,11 @@ jobs:
1717
matrix: {'platform':['rhel-8', 'debian-11'],'collection':['puppet7-nightly', 'puppet8-nightly']}
1818

1919
steps:
20+
- name: "Install Twingate"
21+
uses: "twingate/github-action@v1"
22+
with:
23+
service-key: ${{ secrets.TWINGATE_PUBLIC_REPO_KEY }}
24+
2025
- name: Checkout Source
2126
uses: actions/checkout@v3
2227

0 commit comments

Comments
 (0)