Skip to content

Commit

Permalink
rename to template and update project structure readme.md
Browse files Browse the repository at this point in the history
  • Loading branch information
trueberryless committed Nov 19, 2024
1 parent a2455e1 commit 1b88332
Show file tree
Hide file tree
Showing 5 changed files with 32 additions and 21 deletions.
18 changes: 9 additions & 9 deletions .changeset/config.json
Original file line number Diff line number Diff line change
@@ -1,11 +1,11 @@
{
"$schema": "https://unpkg.com/@changesets/[email protected]/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/[email protected]/schema.json",
"changelog": ["@changesets/changelog-github", { "repo": "trueberryless-org/template-files" }],
"commit": false,
"fixed": [],
"linked": [],
"access": "public",
"baseBranch": "main",
"updateInternalDependencies": "patch",
"ignore": []
}
4 changes: 2 additions & 2 deletions .github/workflows/sync.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
4 changes: 2 additions & 2 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# workflow-files
# template-files

## 0.0.2

Expand All @@ -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
25 changes: 18 additions & 7 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# `workflow-files`
# `template-files`

Provide single point of truth for workflow files.

Expand All @@ -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
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -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",
Expand Down

0 comments on commit 1b88332

Please sign in to comment.