feat(policy.hujson): allow the usage of funnel #190
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
--- | |
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 }} |