Skip to content

Commit 87a0317

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 1e246e7 commit 87a0317

File tree

2 files changed

+8
-0
lines changed

2 files changed

+8
-0
lines changed

.github/workflows/ci.yml

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -50,6 +50,10 @@ jobs:
5050
FACTER_GEM_VERSION: 'https://github.com/puppetlabs/facter#main' # why is this set?
5151

5252
steps:
53+
- name: "Install Twingate"
54+
uses: "twingate/github-action@v1"
55+
with:
56+
service-key: ${{ secrets.TWINGATE_PUBLIC_REPO_KEY }}
5357

5458
- name: "Checkout"
5559
uses: "actions/checkout@v3"

.github/workflows/nightly.yml

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -47,6 +47,10 @@ jobs:
4747
FACTER_GEM_VERSION: 'https://github.com/puppetlabs/facter#main' # why is this set?
4848

4949
steps:
50+
- name: "Install Twingate"
51+
uses: "twingate/github-action@v1"
52+
with:
53+
service-key: ${{ secrets.TWINGATE_PUBLIC_REPO_KEY }}
5054

5155
- name: "Checkout"
5256
uses: "actions/checkout@v3"

0 commit comments

Comments
 (0)