dummy change to trigger action (revert me) #3
Workflow file for this run
This file contains 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: | |
repository_dispatch: | |
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@v1 | |
with: | |
version: 1.9 | |
- uses: julia-actions/julia-buildpkg@v1 | |
with: | |
project: tools/check_orgs | |
precompile: yes | |
- run: julia --project=. --color=yes check_orgs.jl | |
working-directory: tools/check_orgs | |
env: | |
GITHUB_AUTH: ${{ secrets.DEPLOY_KEY }} |