From 090a5f02e186fcefe9430b820e3be19719f90d42 Mon Sep 17 00:00:00 2001 From: Mark Chappell Date: Fri, 10 Jan 2025 19:54:26 +0100 Subject: [PATCH] . --- .github/workflows/backports.yml | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/.github/workflows/backports.yml b/.github/workflows/backports.yml index 7b254d54a7..e7d30beb88 100644 --- a/.github/workflows/backports.yml +++ b/.github/workflows/backports.yml @@ -12,7 +12,7 @@ on: branches: - main jobs: - changelog_types: + changelog-types: permissions: pull-requests: read runs-on: ubuntu-latest @@ -40,12 +40,12 @@ jobs: env: GH_TOKEN: ${{ github.token }} - changelog_labeling: + changelog-labeling: permissions: pull-requests: write runs-on: ubuntu-latest needs: - - changelog_types + - changelog-types steps: - run: if [[ ${NO_BACKPORT} == 0 ]] ; then echo ${BACKPORT_FORBIDDEN} ; exit 0 ; fi @@ -58,9 +58,9 @@ jobs: echo ${BACKPORT_BUGFIX} env: GH_TOKEN: ${{ github.token }} - NO_BACKPORT: ${{ needs.changelog_types.outputs.no_backport }} - BUGFIX: ${{ needs.changelog_types.outputs.bugfix }} - MINOR_ONLY: ${{ needs.changelog_types.outputs.minor_only }} + NO_BACKPORT: ${{ needs.changelog-types.outputs.no_backport }} + BUGFIX: ${{ needs.changelog-types.outputs.bugfix }} + MINOR_ONLY: ${{ needs.changelog-types.outputs.minor_only }} # These should be updated as part of the MAJOR release process BACKPORT_CURRENT: 'backport-9' BACKPORT_BUGFIX: 'backport-8'