From 89cde1f3a4545d2468c81efbaecddf7aa6d9f7b4 Mon Sep 17 00:00:00 2001 From: biersoeckli Date: Sat, 22 Feb 2025 14:29:47 +0100 Subject: [PATCH] fix: update branch references from canary to main in "canary-release" workflow and contributing guidelines --- .github/workflows/canary-release.yml | 2 +- CONTRIBUTING.md | 6 ++++-- 2 files changed, 5 insertions(+), 3 deletions(-) diff --git a/.github/workflows/canary-release.yml b/.github/workflows/canary-release.yml index fdd0863..979efb2 100644 --- a/.github/workflows/canary-release.yml +++ b/.github/workflows/canary-release.yml @@ -3,7 +3,7 @@ name: Canary - Build and Push Docker Image on: push: branches: - - canary + - main permissions: contents: read diff --git a/CONTRIBUTING.md b/CONTRIBUTING.md index 63f15e5..0f13f2f 100644 --- a/CONTRIBUTING.md +++ b/CONTRIBUTING.md @@ -59,11 +59,13 @@ BREAKING CHANGE: this is a breaking change ### Submitting Pull Requests If you would like to contribute code to QuickStack, please follow these steps: -1. Fork the repository and create your branch from `canary`. +1. Fork the repository and create your branch from `main`. 2. If you have added code that should be tested, add tests. 3. Ensure the test suite passes. 4. Make sure your code lints. -5. Submit a pull request to the `canary` branch. +5. Submit a pull request to the `main` branch. + +For each merged pull request a docker image for the canary tag will be created. ### Running Tests