Fixing exampleapps.json
conflict
#6
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
# Checks example apps with the list of repos we have in GH to make sure we aren't missing any | |
name: example_app_check | |
on: | |
pull_request: | |
paths: | |
- 'astro/src/content/json/exampleapps.json' | |
- 'astro/src/content/quickstarts/**' | |
- '.github/workflows/exampleappcheck.yml' | |
- '.github/scripts/count-repos.sh' | |
# Allows you to run this workflow manually from the Actions tab | |
workflow_dispatch: | |
# A workflow run is made up of one or more jobs that can run sequentially or in parallel | |
jobs: | |
check_example_apps: | |
# The type of runner that the job will run on | |
runs-on: ubuntu-latest | |
env: | |
GH_TOKEN: ${{ github.token }} | |
# Steps represent a sequence of tasks that will be executed as part of the job | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Check for example app completeness | |
run: exit `bash .github/scripts/count-repos.sh` | |
shell: bash |