Skip to content

#14316 Use local repo commands instead of the github api for Release Drop Down population #14834

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 19 commits into from
Jul 8, 2025
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
19 commits
Select commit Hold shift + click to select a range
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 2 additions & 4 deletions .github/workflows/gradle.yml
Original file line number Diff line number Diff line change
Expand Up @@ -24,10 +24,6 @@ on:
- '[4-9]+.[0-9]+.x'
- '[3-9]+.[3-9]+.x'
workflow_dispatch:
env:
# To prevent throttling of GitHub API usage, include the GitHub token as an environment variable
# as the build will use it when fetching git tags in CreateReleaseDropDown.groovy
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
# queue jobs and only allow 1 run per branch due to the likelihood of hitting GitHub resource limits
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
Expand Down Expand Up @@ -393,6 +389,8 @@ jobs:
run: curl -s https://api.ipify.org
- name: "📥 Checkout the repository"
uses: actions/checkout@v4
with:
fetch-tags: true
- name: "🔀 Store current branch name"
run: |
TARGET_BRANCH="${GITHUB_BASE_REF:-${GITHUB_REF#refs/heads/}}"
Expand Down
3 changes: 3 additions & 0 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -42,6 +42,8 @@ jobs:
echo "repository_name=${GITHUB_REPOSITORY##*/}" >> $GITHUB_OUTPUT
- name: "📥 Checkout repository"
uses: actions/checkout@v4
with:
fetch-tags: true
- name: 'Ensure Common Build Date' # to ensure a reproducible build
run: echo "SOURCE_DATE_EPOCH=$(git log -1 --pretty=%ct)" >> "$GITHUB_ENV"
- name: "Ensure source files use common date"
Expand Down Expand Up @@ -487,6 +489,7 @@ jobs:
- name: "📥 Checkout repository"
uses: actions/checkout@v4
with:
fetch-tags: true
token: ${{ secrets.GITHUB_TOKEN }}
ref: v${{ needs.publish.outputs.release_version }}
- name: 'Ensure Common Build Date' # to ensure a reproducible build
Expand Down
1 change: 0 additions & 1 deletion RENAME.md
Original file line number Diff line number Diff line change
Expand Up @@ -170,7 +170,6 @@ Below is a reference of all migrated artifacts - both their old and new name.
| GRADLE | | | | | | |
| org.grails | grails-gradle-plugin | org.apache.grails | grails-gradle-plugins | | | grails-gradle-plugin |
| org.grails.grails-core | org.grails.grails-core.gradle.plugin | org.apache.grails.gradle.grails-app | org.apache.grails.gradle.grails-app.gradle.plugin | grails | grails-app | grails-gradle-plugin |
| org.grails.grails-doc | org.grails.grails-doc.gradle.plugin | org.apache.grails.gradle.grails-docs | org.apache.grails.gradle.grails-docs.gradle.plugin | grails-doc | grails-docs | grails-gradle-plugin |
| org.grails.grails-gsp | org.grails.grails-gsp.gradle.plugin | org.apache.grails.gradle.grails-gsp | org.apache.grails.gradle.grails-gsp.gradle.plugin | grails-gsp | grails-gsp | grails-gradle-plugin |
| org.grails.grails-plugin | org.grails.grails-plugin.gradle.plugin | org.apache.grails.gradle.grails-plugin | org.apache.grails.gradle.grails-plugin.gradle.plugin | grails-plugin | grails-plugin | grails-gradle-plugin |
| org.grails.grails-profile | org.grails.grails-profile.gradle.plugin | org.apache.grails.gradle.grails-profile | org.apache.grails.gradle.grails-profile.gradle.plugin | grails-profile | grails-profile | grails-gradle-plugin |
Expand Down
227 changes: 0 additions & 227 deletions buildSrc/src/main/groovy/grails/doc/AddReleaseDropDown.groovy

This file was deleted.

Loading
Loading