├── README.md ├── saml-to.yml └── .github └── workflows └── config-sync.yml /README.md: -------------------------------------------------------------------------------- 1 | # config-template 2 | A template repository for to manage SAML.to declarative configuration and config synchronization 3 | -------------------------------------------------------------------------------- /saml-to.yml: -------------------------------------------------------------------------------- 1 | --- 2 | # Config Reference: 3 | # https://docs.saml.to/configuration/reference 4 | version: '20220101' 5 | variables: 6 | providers: 7 | permissions: 8 | -------------------------------------------------------------------------------- /.github/workflows/config-sync.yml: -------------------------------------------------------------------------------- 1 | name: SAML.to Config Sync 2 | 3 | on: 4 | workflow_dispatch: 5 | push: 6 | branches: 7 | - main 8 | 9 | jobs: 10 | sync: 11 | runs-on: ubuntu-latest 12 | steps: 13 | - uses: saml-to/config-sync-action@v1 14 | env: 15 | GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} 16 | --------------------------------------------------------------------------------