mirror of
https://github.com/syncthing/syncthing.git
synced 2025-12-23 22:18:14 -05:00
21 lines
494 B
YAML
21 lines
494 B
YAML
name: Org membership recommendations
|
|
|
|
on:
|
|
workflow_dispatch:
|
|
schedule:
|
|
- cron: '0 0 1 * *'
|
|
|
|
jobs:
|
|
|
|
run-recommendation:
|
|
runs-on: ubuntu-latest
|
|
name: Check for a recommendation
|
|
steps:
|
|
|
|
- uses: docker://ghcr.io/calmh/github-org-members:latest
|
|
env:
|
|
GITHUB_ORGANISATION: syncthing
|
|
GITHUB_TOKEN: ${{ secrets.GOM_GITHUB_TOKEN }}
|
|
GOM_IGNORE_USERS: ${{ secrets.GOM_IGNORE_USERS }}
|
|
GOM_ALSO_REPOS: ${{ secrets.GOM_ALSO_REPOS }}
|