Check LP teams #25
This file contains hidden or 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: Check LP teams | |
| on: | |
| schedule: | |
| - cron: 0 0 * * * | |
| jobs: | |
| check-lp-teams: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Checkout code | |
| uses: actions/checkout@v5 | |
| - name: Check LP team membership | |
| run: bash .github/lpteams/lp-teams-check.sh | |
| env: | |
| GH_TOKEN: ${{ secrets.GITHUB_TOKEN }} |