mirror of
https://github.com/usetrmnl/oauth2-providers.git
synced 2026-08-13 23:19:00 -07:00
Established community-maintained OAuth2 provider templates for TRMNL private plugins. Includes a YAML catalogue of 352 providers with schema documentation, GitHub Actions CI validation, issue templates, contributing guidelines, and MIT license.
24 lines
408 B
YAML
24 lines
408 B
YAML
name: Validate Providers
|
|
|
|
on:
|
|
pull_request:
|
|
paths:
|
|
- 'providers.yml'
|
|
push:
|
|
branches: [main]
|
|
paths:
|
|
- 'providers.yml'
|
|
|
|
jobs:
|
|
validate:
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- uses: actions/checkout@v4
|
|
|
|
- uses: ruby/setup-ruby@v1
|
|
with:
|
|
ruby-version: '3.3'
|
|
|
|
- name: Validate providers.yml
|
|
run: ruby .github/scripts/validate_providers.rb
|