Update check_orgs.jl
: Handle errors; also, remove an org that no longer exists (JuliaAstrodynamics)
#32
Workflow file for this run
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 publicly listed organizations | |
on: | |
workflow_dispatch: | |
pull_request: | |
paths: | |
- community/organizations.md | |
push: | |
paths: | |
- community/organizations.md | |
jobs: | |
check_orgs: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v4 | |
with: | |
persist-credentials: false | |
fetch-depth: 1 | |
- uses: julia-actions/setup-julia@v2 | |
with: | |
version: 1.9 | |
- uses: julia-actions/julia-buildpkg@v1 | |
with: | |
project: tools/check_orgs | |
precompile: yes | |
- name: Check for any listed orgs with fewer than 2 public members | |
run: julia --project=. --color=yes check_orgs.jl | |
working-directory: tools/check_orgs | |
env: | |
GITHUB_AUTH: ${{ secrets.GITHUB_TOKEN }} |