diff --git a/.changeset/config.json b/.changeset/config.json index 6daf51a..ac17d25 100644 --- a/.changeset/config.json +++ b/.changeset/config.json @@ -1,11 +1,11 @@ { - "$schema": "https://unpkg.com/@changesets/config@3.0.3/schema.json", - "changelog": ["@changesets/changelog-github", { "repo": "trueberryless-org/workflow-files" }], - "commit": false, - "fixed": [], - "linked": [], - "access": "public", - "baseBranch": "main", - "updateInternalDependencies": "patch", - "ignore": [] + "$schema": "https://unpkg.com/@changesets/config@3.0.3/schema.json", + "changelog": ["@changesets/changelog-github", { "repo": "trueberryless-org/template-files" }], + "commit": false, + "fixed": [], + "linked": [], + "access": "public", + "baseBranch": "main", + "updateInternalDependencies": "patch", + "ignore": [] } diff --git a/.github/workflows/sync.yaml b/.github/workflows/sync.yaml index 5965702..0ae82e0 100644 --- a/.github/workflows/sync.yaml +++ b/.github/workflows/sync.yaml @@ -96,9 +96,9 @@ jobs: echo "Processing file: $src_file" - # Check if the file exists in the workflow-files directory + # Check if the file exists in the template-files directory if [ ! -f "../$src_file" ]; then - echo "Warning: File $src_file not found in /workflow-files." + echo "Warning: File $src_file not found in /template-files." continue fi diff --git a/CHANGELOG.md b/CHANGELOG.md index 1c4180e..a07e3b7 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,4 +1,4 @@ -# workflow-files +# template-files ## 0.0.2 @@ -10,4 +10,4 @@ ### Patch Changes -- [`5ff470e`](https://github.com/trueberryless-org/workflow-files/commit/5ff470e93d072a8b862d329a4aba2e80c27c1f95) Thanks [@trueberryless](https://github.com/trueberryless)! - Create single source of truth for ci files +- [`5ff470e`](https://github.com/trueberryless-org/template-files/commit/5ff470e93d072a8b862d329a4aba2e80c27c1f95) Thanks [@trueberryless](https://github.com/trueberryless)! - Create single source of truth for ci files diff --git a/README.md b/README.md index 9486488..6c959f4 100644 --- a/README.md +++ b/README.md @@ -1,4 +1,4 @@ -# `workflow-files` +# `template-files` Provide single point of truth for workflow files. @@ -11,12 +11,23 @@ Provide single point of truth for workflow files. ├── .github/ │ ├── workflows/ │ │ ├── release.yaml # Create changeset if desired -│ │ └-─ sync.yaml # Create PRs on target repos when triggered by changeset -├── worflow-files/ # Actual files which get synced to target repos -│ ├── deployment.yaml -│ ├── publish.yaml -│ ├── release.yaml -│ └-─ welcome-bot.yaml +│ └-─ └-─ sync.yaml # Create PRs on target repos when triggered by changeset +├── template-files/ # Actual files which get synced to target repos +│ ├── .changeset/ +│ │ ├── config.json +│ │ └-─ README.md +│ ├── .github/ +│ │ ├── workflows/ +│ │ │ ├── deployment.yaml +│ │ │ ├── publish.yaml +│ │ │ ├── release.yaml +│ │ └-─ └-─ welcome-bot.yaml +│ ├── manifest/ +│ │ ├── certificate.yaml +│ │ ├── deployment.yaml +│ │ ├── ingress.yaml +│ │ ├── namespace.yaml +│ └-─ └-─ service.yaml ├── .gitignore ├── LICENCE ├── package.json diff --git a/package.json b/package.json index 2f14c03..a22aeaf 100644 --- a/package.json +++ b/package.json @@ -1,5 +1,5 @@ { - "name": "workflow-files", + "name": "template-files", "version": "0.0.2", "license": "MIT", "description": "Provide single point of truth for workflow files",