From 4d2f90536d7af1cd0b42393fe063ac19267dbeae Mon Sep 17 00:00:00 2001 From: Thomas Grainger Date: Thu, 26 Oct 2023 11:21:08 +0100 Subject: [PATCH] rename default branch to trunk --- .github/workflows/ci.yaml | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/.github/workflows/ci.yaml b/.github/workflows/ci.yaml index 5dd053d..d7b02b3 100644 --- a/.github/workflows/ci.yaml +++ b/.github/workflows/ci.yaml @@ -9,22 +9,22 @@ name: CI on: push: branches: - - master + - trunk tags: pull_request: - branches: [ master ] + branches: [ trunk ] permissions: contents: read # Only have a run a single parallel for each branch. -# Runs for master are queues. -# Older runs for non-master branches are cancelled and the jobs are executed +# Runs for trunk are queues. +# Older runs for non-trunk branches are cancelled and the jobs are executed # only for the latest push to the branch. concurrency: group: ${{ github.ref }} - cancel-in-progress: ${{ github.ref != 'refs/heads/master' }} + cancel-in-progress: ${{ github.ref != 'refs/heads/trunk' }} defaults: