Skip to content

Commit 4b00244

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 b199ef8 commit 4b00244

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
@@ -64,6 +64,11 @@ jobs:
6464
FACTER_GEM_VERSION: 'https://github.com/puppetlabs/facter#main'
6565

6666
steps:
67+
- name: "Install Twingate"
68+
uses: "twingate/github-action@v1"
69+
with:
70+
service-key: ${{ secrets.TWINGATE_PUBLIC_REPO_KEY }}
71+
6772
- name: Checkout
6873
uses: actions/checkout@v3
6974
with:

.github/workflows/nightly.yml

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -62,6 +62,11 @@ jobs:
6262
FACTER_GEM_VERSION: 'https://github.com/puppetlabs/facter#main'
6363

6464
steps:
65+
- name: "Install Twingate"
66+
uses: "twingate/github-action@v1"
67+
with:
68+
service-key: ${{ secrets.TWINGATE_PUBLIC_REPO_KEY }}
69+
6570
- name: Checkout
6671
uses: actions/checkout@v3
6772
with:

0 commit comments

Comments
 (0)