aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--.github/workflows/builds.yml6
-rw-r--r--README.md2
-rw-r--r--docs/integration.md2
-rw-r--r--scripts/create.js4
4 files changed, 7 insertions, 7 deletions
diff --git a/.github/workflows/builds.yml b/.github/workflows/builds.yml
index 8cff673..4fd4f97 100644
--- a/.github/workflows/builds.yml
+++ b/.github/workflows/builds.yml
@@ -6,10 +6,10 @@ name: Builds
6on: 6on:
7 # Push to any tracked branches 7 # Push to any tracked branches
8 push: 8 push:
9 branches: [master] 9 branches: [main]
10 # PRs only on master branch 10 # PRs only on main branch
11 pull_request: 11 pull_request:
12 branches: [master] 12 branches: [main]
13 # Manual trigger from the UI 13 # Manual trigger from the UI
14 workflow_dispatch: 14 workflow_dispatch:
15 inputs: 15 inputs:
diff --git a/README.md b/README.md
index 0d44e1c..1f3413d 100644
--- a/README.md
+++ b/README.md
@@ -6,7 +6,7 @@
6 6
7# Recipes 7# Recipes
8 8
9<a href="https://github.com/ferdium/ferdium-recipes/actions/workflows/builds.yml"><img alt="Build Status" src="https://github.com/ferdium/ferdium-recipes/actions/workflows/builds.yml/badge.svg?branch=master&event=push"></a> 9<a href="https://github.com/ferdium/ferdium-recipes/actions/workflows/builds.yml"><img alt="Build Status" src="https://github.com/ferdium/ferdium-recipes/actions/workflows/builds.yml/badge.svg?branch=main&event=push"></a>
10<!-- ALL-CONTRIBUTORS-BADGE:START - Do not remove or modify this section --> 10<!-- ALL-CONTRIBUTORS-BADGE:START - Do not remove or modify this section -->
11<a href='#contributors-'><img src='https://img.shields.io/badge/contributors-74-default.svg?logo=github' alt='Contributors'/></a> 11<a href='#contributors-'><img src='https://img.shields.io/badge/contributors-74-default.svg?logo=github' alt='Contributors'/></a>
12<!-- ALL-CONTRIBUTORS-BADGE:END --> 12<!-- ALL-CONTRIBUTORS-BADGE:END -->
diff --git a/docs/integration.md b/docs/integration.md
index 10eb723..9ff7011 100644
--- a/docs/integration.md
+++ b/docs/integration.md
@@ -8,7 +8,7 @@ A Ferdium recipe is basically nothing else than a node module and is currently i
8 8
9> ℹ️ If you have any problems packaging your recipes, if you are inexperienced with the tools used or have any other problems, we are here to help! Just open a new issue at https://github.com/ferdium/ferdium-recipes/issues/new and we can help you develop, test and publish your recipe 9> ℹ️ If you have any problems packaging your recipes, if you are inexperienced with the tools used or have any other problems, we are here to help! Just open a new issue at https://github.com/ferdium/ferdium-recipes/issues/new and we can help you develop, test and publish your recipe
10 10
11> If you want to update an existing recipe, please refer to [updating.md](https://github.com/ferdium/ferdium-recipes/blob/master/docs/updating.md) instead 11> If you want to update an existing recipe, please refer to [updating.md](https://github.com/ferdium/ferdium-recipes/blob/main/docs/updating.md) instead
12 12
13## Table of Contents 13## Table of Contents
14 14
diff --git a/scripts/create.js b/scripts/create.js
index 4939431..38d1688 100644
--- a/scripts/create.js
+++ b/scripts/create.js
@@ -89,6 +89,6 @@ const pascalCasedName = toPascalCase(recipe); // PascalCased recipe ID only cont
89 89
90What's next? 90What's next?
91- Make sure you restart Ferdium in order for the recipe to show up 91- Make sure you restart Ferdium in order for the recipe to show up
92- Customise "webview.js", "package.json" and "icon.svg" (see https://github.com/ferdium/ferdium-recipes/blob/master/docs/integration.md#recipe-structure) 92- Customise "webview.js", "package.json" and "icon.svg" (see https://github.com/ferdium/ferdium-recipes/blob/main/docs/integration.md#recipe-structure)
93- Publish your recipe (see https://github.com/ferdium/ferdium-recipes/blob/master/docs/integration.md#publishing)`); 93- Publish your recipe (see https://github.com/ferdium/ferdium-recipes/blob/main/docs/integration.md#publishing)`);
94})(); 94})();