From 98a71eea46d10f2a6718981e35e1b775383ef08f Mon Sep 17 00:00:00 2001 From: Albert Le Batteux Date: Tue, 14 May 2024 13:29:25 +0100 Subject: [PATCH 1/2] fix(ci): typo on deploy-docs (#2089)
Contributors' checklist... - [ ] Added new tests, or not needed, or not feasible - [ ] Provided an example (e.g. screenshot) to aid review or the PR is self-explanatory - [ ] Updated the official documentation or not needed - [ ] No breaking changes were made, or a `BREAKING CHANGE: xxx` message was included in the description - [ ] Added references to related issues and PRs - [ ] Provided any useful hints for running manual tests - [ ] Added new benchmarks to [generated graphs](https://gnoland.github.io/benchmarks), if any. More info [here](https://github.com/gnolang/gno/blob/master/.benchmarks/README.md).
--- .github/workflows/deploy-docs.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/deploy-docs.yml b/.github/workflows/deploy-docs.yml index 5dab03c1f7f1..796803698220 100644 --- a/.github/workflows/deploy-docs.yml +++ b/.github/workflows/deploy-docs.yml @@ -14,7 +14,7 @@ jobs: with: github-token: ${{ secrets.DOCS_DEPLOY_PAT }} script: | - await github.rest.actions.createworkflowDispatch({ + await github.rest.actions.createWorkflowDispatch({ owner: 'gnolang', repo: 'docs.gno.land', workflow_id: 'netlify.yml', From f6e7dccde6532f1b2195325823aaaeb111c9edf9 Mon Sep 17 00:00:00 2001 From: Antonio Navarro Perez Date: Tue, 14 May 2024 14:33:40 +0200 Subject: [PATCH 2/2] fix: Set examples.yml GitHub action inside the correct folder (#2090) When refactoring CI files I moved examples.yml outside the workflows folder. Move it back until we find a cleaner solution to test examples using Go Tests.
Contributors' checklist... - [x] Added new tests, or not needed, or not feasible - [x] Provided an example (e.g. screenshot) to aid review or the PR is self-explanatory - [x] Updated the official documentation or not needed - [x] No breaking changes were made, or a `BREAKING CHANGE: xxx` message was included in the description - [x] Added references to related issues and PRs - [x] Provided any useful hints for running manual tests - [x] Added new benchmarks to [generated graphs](https://gnoland.github.io/benchmarks), if any. More info [here](https://github.com/gnolang/gno/blob/master/.benchmarks/README.md).
Signed-off-by: Antonio Navarro Perez --- .github/{ => workflows}/examples.yml | 0 1 file changed, 0 insertions(+), 0 deletions(-) rename .github/{ => workflows}/examples.yml (100%) diff --git a/.github/examples.yml b/.github/workflows/examples.yml similarity index 100% rename from .github/examples.yml rename to .github/workflows/examples.yml