From 668dc882b67c207ddfa465303c51e9f31a2c0e89 Mon Sep 17 00:00:00 2001 From: Matthias Kurz Date: Wed, 20 Sep 2023 10:10:33 +0200 Subject: [PATCH] Adjust branch for GHA workflows --- .github/workflows/build-test.yml | 2 +- .github/workflows/dependency-graph.yml | 2 +- .github/workflows/publish.yml | 2 +- .github/workflows/release-drafter.yml | 4 ++-- 4 files changed, 5 insertions(+), 5 deletions(-) diff --git a/.github/workflows/build-test.yml b/.github/workflows/build-test.yml index 84931f99..990c58c8 100644 --- a/.github/workflows/build-test.yml +++ b/.github/workflows/build-test.yml @@ -5,7 +5,7 @@ on: push: branches: - - main # Check branch after merge + - 7.0.x # Check branch after merge concurrency: # Only run once for latest commit per ref and cancel other (previous) runs. diff --git a/.github/workflows/dependency-graph.yml b/.github/workflows/dependency-graph.yml index 69cfe553..e69c6904 100644 --- a/.github/workflows/dependency-graph.yml +++ b/.github/workflows/dependency-graph.yml @@ -2,7 +2,7 @@ name: Dependency Graph on: push: branches: - - main + - 7.0.x concurrency: # Only run once for latest commit per ref and cancel other (previous) runs. diff --git a/.github/workflows/publish.yml b/.github/workflows/publish.yml index 92e6f544..e5730ce4 100644 --- a/.github/workflows/publish.yml +++ b/.github/workflows/publish.yml @@ -3,7 +3,7 @@ name: Publish on: push: branches: # Snapshots - - main + - 7.0.x tags: ["**"] # Releases release: types: [published] diff --git a/.github/workflows/release-drafter.yml b/.github/workflows/release-drafter.yml index 722449d9..d813e396 100644 --- a/.github/workflows/release-drafter.yml +++ b/.github/workflows/release-drafter.yml @@ -3,7 +3,7 @@ name: Release Drafter on: push: branches: - - main + - 7.0.x jobs: update_release_draft: @@ -12,7 +12,7 @@ jobs: - uses: release-drafter/release-drafter@v5 with: name: "Play Ebean $RESOLVED_VERSION" - config-name: release-drafts/increasing-minor-version.yml # located in .github/ in the default branch within this or the .github repo + config-name: release-drafts/increasing-patch-version.yml # located in .github/ in the default branch within this or the .github repo commitish: ${{ github.ref_name }} env: GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}