From b9f6076bf40d62b9f135105c29846640c41d2a32 Mon Sep 17 00:00:00 2001 From: Jakub Jankiewicz Date: Tue, 17 Sep 2024 16:51:38 +0200 Subject: [PATCH 1/2] fix docs workflow --- .github/workflows/docs.yaml | 4 ++++ README.md | 3 ++- 2 files changed, 6 insertions(+), 1 deletion(-) diff --git a/.github/workflows/docs.yaml b/.github/workflows/docs.yaml index 5b0f611f..359d1149 100644 --- a/.github/workflows/docs.yaml +++ b/.github/workflows/docs.yaml @@ -8,6 +8,10 @@ on: branches: - docusaurus - master + pull_request: + branches: + - master + - devel permissions: contents: write diff --git a/README.md b/README.md index 9a22ebe4..7ba347e3 100644 --- a/README.md +++ b/README.md @@ -300,7 +300,8 @@ in Web (e.g. in Web REPL) you can use URL: * [Brian Lovin](https://brianlovin.com/hn/38819212) (HN clone) ## Projects that use LIPS -* [Conzept](https://conze.pt) - Topic exploration system for the 21st century (see also their [Twitter account](https://twitter.com/conzept__) and [Command API Documentation](https://conze.pt/guide/command_api)) +* [Conzept](https://conze.pt) - Topic exploration system for the 21st century (see also their [Twitter account](https://twitter.com/conzept__) and [Command API Documentation](https://conze.pt/guide/command_api)). +* [Logoi](https://logoi.website/) - a minimalist "superdialect" of the Prolog and Lisp programming languages. ## Roadmap ### 1.0 From 8a0d68b50937a78e45edc04f65ddeeefb03ccc1b Mon Sep 17 00:00:00 2001 From: Jakub Jankiewicz Date: Tue, 17 Sep 2024 16:54:22 +0200 Subject: [PATCH 2/2] limit scope of workflows --- .github/workflows/build.yaml | 9 +++++++++ .github/workflows/docs.yaml | 3 +++ 2 files changed, 12 insertions(+) diff --git a/.github/workflows/build.yaml b/.github/workflows/build.yaml index fbaf70e2..415e4f67 100644 --- a/.github/workflows/build.yaml +++ b/.github/workflows/build.yaml @@ -15,6 +15,15 @@ on: - master - devel pull_request: + paths: + - "template/Makefile" + - "Makefile" + - "scripts/*" + - "tests/*" + - "bin/*" + - "lib/*" + - "src/*" + - ".github/workflows/build.yaml" branches: - master - devel diff --git a/.github/workflows/docs.yaml b/.github/workflows/docs.yaml index 359d1149..c680a162 100644 --- a/.github/workflows/docs.yaml +++ b/.github/workflows/docs.yaml @@ -9,6 +9,9 @@ on: - docusaurus - master pull_request: + paths: + - "docs/**" + - ".github/workflows/docs.yaml" branches: - master - devel