Skip to content

feat(policy.hujson): allow the usage of funnel #190

feat(policy.hujson): allow the usage of funnel

feat(policy.hujson): allow the usage of funnel #190

Workflow file for this run

---
name: Sync Tailscale ACLs
on:
push:
branches: [main]
paths: [policy.hujson]
jobs:
acls:
runs-on: ubuntu-latest
steps:
- name: Checkout πŸ›ŽοΈ
uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11 # v4
- name: Deploy ACL πŸš€
if: github.event_name == 'push'
id: deploy-acl
uses: tailscale/gitops-acl-action@v1
with:
action: apply
api-key: ${{ secrets.TS_API_KEY }}
tailnet: ${{ secrets.TS_TAILNET }}
- name: Test ACL πŸ§ͺ
if: github.event_name == 'pull_request'
id: test-acl
uses: tailscale/gitops-acl-action@v1
with:
action: test
api-key: ${{ secrets.TS_API_KEY }}
tailnet: ${{ secrets.TS_TAILNET }}