From d99d0dee19dd7549a609c678906c41ce45c87036 Mon Sep 17 00:00:00 2001 From: Andrew Gable Date: Fri, 20 Jun 2025 13:45:57 -0600 Subject: [PATCH 1/2] Update README.md --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 53fd584..c042d99 100644 --- a/README.md +++ b/README.md @@ -8,7 +8,7 @@ Expensify has multiple repositories that use the same GitHub Actions workflows. ### `npmPublish.yml` -Used to publish a package to [npmjs](https://www.npmjs.com/), should be triggered when code is merged into the `main` branch. +Used to publish a package to [npmjs](https://www.npmjs.com/), should be triggered when code is merged into the `main` branch. **Note**: Please follow [these instructions](https://stackoverflowteams.com/c/expensify/questions/17043/17044#17044) to grant our bots the correct access to publish. ```yml jobs: From 30fe6166bc7d23ed0b4ad6e8f1c5f2a926ef67fe Mon Sep 17 00:00:00 2001 From: Andrew Gable Date: Mon, 23 Jun 2025 10:44:18 -0700 Subject: [PATCH 2/2] Try to fix test --- scripts/validateWorkflowSchemas.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scripts/validateWorkflowSchemas.sh b/scripts/validateWorkflowSchemas.sh index eaa98d5..0b12ac2 100755 --- a/scripts/validateWorkflowSchemas.sh +++ b/scripts/validateWorkflowSchemas.sh @@ -20,7 +20,7 @@ trap 'rm -rf "$TEMP_SCHEMA_DIR"' EXIT # Download the up-to-date json schemas for github actions and workflows for SCHEMA in github-action.json github-workflow.json; do info "Downloading $SCHEMA schema..." - if curl "https://json.schemastore.org/$SCHEMA" --output "$TEMP_SCHEMA_DIR/$SCHEMA" --silent; then + if curl "https://raw.githubusercontent.com/SchemaStore/schemastore/refs/heads/master/src/schemas/json/$SCHEMA" --output "$TEMP_SCHEMA_DIR/$SCHEMA" --silent; then success "Successfully downloaded $SCHEMA schema!" else error "Failed downloading $SCHEMA schema" >&2