Skip to content
This repository was archived by the owner on Mar 13, 2025. It is now read-only.

Commit 9a2748c

Browse files
committed
build: pr feedback
1 parent 56c646a commit 9a2748c

File tree

3 files changed

+9
-2
lines changed

3 files changed

+9
-2
lines changed

.github/workflows/gradle.yml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,8 @@ env:
1313
jobs:
1414
build:
1515
runs-on: ubuntu-24.04
16+
permissions:
17+
packages: read
1618
env:
1719
GRADLE_OPTS: -Xmx1500m -Dfile.encoding=UTF-8
1820
steps:

.github/workflows/release-notes.yml

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,10 +13,14 @@ on:
1313
jobs:
1414
update_release_draft:
1515
permissions:
16-
contents: read # limit to read access
16+
# write permission is required to create a github release
17+
contents: write
18+
# write permission is required for autolabeler
19+
# otherwise, read permission is required at least
20+
pull-requests: write
1721
runs-on: ubuntu-latest
1822
steps:
1923
- name: "📝 Update Release Draft"
2024
uses: release-drafter/release-drafter@v6
2125
env:
22-
GITHUB_TOKEN: ${{ secrets.GH_TOKEN }}
26+
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}

settings.gradle

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,7 @@ develocity {
1212
buildScan {
1313
tag('grails')
1414
tag('gorm-hibernate5')
15+
tag('grails-database-migration')
1516
publishing.onlyIf { isAuthenticated }
1617
uploadInBackground = isLocal
1718
}

0 commit comments

Comments
 (0)