Skip to content

[Canary] Grails 8 on Groovy 6.0.0-SNAPSHOT #11461

[Canary] Grails 8 on Groovy 6.0.0-SNAPSHOT

[Canary] Grails 8 on Groovy 6.0.0-SNAPSHOT #11461

Workflow file for this run

# Licensed to the Apache Software Foundation (ASF) under one or more
# contributor license agreements. See the NOTICE file distributed with
# this work for additional information regarding copyright ownership.
# The ASF licenses this file to You under the Apache License, Version 2.0
# (the "License"); you may not use this file except in compliance with
# the License. You may obtain a copy of the License at
#
# https://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.
name: "Release - Drafter"
on:
issues:
types: [closed,reopened]
push:
branches:
- '[0-9]+.[0-9]+.x'
pull_request:
types: [opened, reopened, synchronize, labeled]
workflow_dispatch:
# queue jobs and only allow 1 run per branch due to the likelihood of hitting GitHub resource limits
concurrency:
group: release-pipeline-${{ github.event.pull_request.base.ref || github.ref_name }}
cancel-in-progress: false
jobs:
update_release_draft:
permissions:
# write permission is required to create a github release
contents: write
# write permission is required for autolabeler
pull-requests: write
runs-on: ubuntu-latest
steps:
- name: "🔢 Derive semver range from branch"
id: version
run: |
BRANCH="${{ github.event.pull_request.base.ref || github.ref_name }}"
if [[ "$BRANCH" =~ ^[0-9]+\.[0-9]+\.x$ ]]; then
echo "range=~${BRANCH%.x}.0" >> "$GITHUB_OUTPUT"
fi
- name: "📝 Update Release Draft"
uses: release-drafter/release-drafter@5de93583980a40bd78603b6dfdcda5b4df377b32 # v7.2.0
continue-on-error: true
with:
commitish: ${{ github.event.pull_request.base.ref || github.ref_name }}
filter-by-range: ${{ steps.version.outputs.range }}
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}