diff --git a/.github/workflows/check-repos.yml b/.github/workflows/check-repos.yml index c927ebd..65fae95 100644 --- a/.github/workflows/check-repos.yml +++ b/.github/workflows/check-repos.yml @@ -25,7 +25,7 @@ jobs: GITHUB_TOKEN: ${{ steps.github_app_token.outputs.token }} run: | npm install -g meta - ./scripts/update.sh + ./bin/check-repos.sh echo REPOS_ADDED=$(git diff --unified=0 .gitignore | grep '+/' | cut -f2 -d'/' | paste -sd ',' - | sed "s/,/, /g" | sed 's/\(.*\),/\1 and/') >> $GITHUB_ENV - name: Create Pull Request diff --git a/README.md b/README.md index 957c420..0f3d325 100644 --- a/README.md +++ b/README.md @@ -53,7 +53,7 @@ meta project import new-repo git@github.com:opensearch-project/new-repo.git Meta stores a list of repositories in [.meta](.meta). You can bulk update this file from the opensearch-project org as follows. ``` -./scripts/update.sh +./bin/check-repos.sh ``` ### Create or Update Labels in All Repos diff --git a/scripts/update.sh b/bin/check-repos.sh similarity index 100% rename from scripts/update.sh rename to bin/check-repos.sh