Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -77,7 +77,7 @@ jobs:
######################################
namespace-ubuntu-vm:
name: Namespace Ubuntu VM
runs-on: namespace-profile-default
runs-on: namespace-profile-nikola-test
steps:
- name: Show runner info
run: |
Expand Down
9 changes: 9 additions & 0 deletions 03-core-features/filters/excluded-file.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
This change will NOT trigger a workflow run based on these path filters:

```yaml
paths:
# include markdown files
- "03-core-features/filters/*.md"
# Exclude txt files
- "!03-core-features/filters/*.txt"
```
2 changes: 1 addition & 1 deletion capstone
Submodule capstone updated 52 files
+23 −9 .github/actions/setup-dependencies/action.yaml
+5 −5 .github/utils/.release-please-manifest.json
+6 −3 .github/utils/file-filters.yaml
+3 −3 .github/utils/release-please-config.json
+9 −9 .github/workflows/build-push.yaml
+4 −1 .github/workflows/close-stale-issues-and-prs.yaml
+1 −1 .github/workflows/export-timing-data.yaml
+2 −1 .github/workflows/release-please.yaml
+20 −2 .github/workflows/test.yaml
+3 −1 .github/workflows/test/Taskfile.yaml
+1 −1 .github/workflows/test/event.json
+3 −3 .github/workflows/update-gitops-manifests.yaml
+32 −18 README.md
+11 −11 Taskfile.yaml
+1 −1 deploy/kubernetes/kluctl/services/go/api-golang/config/production.yaml
+1 −1 deploy/kubernetes/kluctl/services/go/api-golang/config/staging.yaml
+1 −1 deploy/kubernetes/kluctl/services/node/api-node/config/staging.yaml
+1 −1 deploy/kubernetes/kluctl/services/python/load-generator-python/config/staging.yaml
+1 −1 deploy/kubernetes/kluctl/services/react/client-react/config/staging.yaml
+34 −0 devbox.json
+1,100 −0 devbox.lock
+ readme-assets/workflow-diagram.jpg
+126 −3 services/go/api-golang/.dockerignore
+21 −0 services/go/api-golang/CHANGELOG.md
+6 −1 services/go/api-golang/Taskfile.yaml
+126 −2 services/node/api-node/.dockerignore
+9 −0 services/node/api-node/CHANGELOG.md
+1 −1 services/node/api-node/Dockerfile
+6 −1 services/node/api-node/Taskfile.yaml
+501 −393 services/node/api-node/package-lock.json
+3 −3 services/node/api-node/package.json
+126 −0 services/other/api-golang-migrator/.dockerignore
+29 −0 services/other/api-golang-migrator/CHANGELOG.md
+0 −0 services/other/api-golang-migrator/Dockerfile
+0 −0 services/other/api-golang-migrator/README.md
+7 −2 services/other/api-golang-migrator/Taskfile.yaml
+0 −0 services/other/api-golang-migrator/migrations/000001_create_users_table.down.sql
+0 −0 services/other/api-golang-migrator/migrations/000001_create_users_table.up.sql
+126 −0 services/python/load-generator-python/.dockerignore
+8 −0 services/python/load-generator-python/CHANGELOG.md
+6 −1 services/python/load-generator-python/Taskfile.yaml
+285 −15 services/python/load-generator-python/poetry.lock
+3 −2 services/python/load-generator-python/pyproject.toml
+4 −0 services/python/load-generator-python/tests/test_example.py
+126 −2 services/react/client-react/.dockerignore
+8 −0 services/react/client-react/CHANGELOG.md
+1 −1 services/react/client-react/Dockerfile
+6 −1 services/react/client-react/Taskfile.yaml
+4,845 −567 services/react/client-react/package-lock.json
+6 −4 services/react/client-react/package.json
+3 −0 services/react/client-react/test/example.test.js
+2 −6 utils/Taskfile.yaml