File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 1+ changelog :
2+ exclude :
3+ labels :
4+ - " no-release-notes"
5+ authors :
6+ - " dependabot"
7+ - " dependabot[bot]"
Original file line number Diff line number Diff line change 6767if [ " $BRANCH " != " $RELEASE_BRANCH " ]; then
6868 git checkout -b $RELEASE_BRANCH
6969 if ! git diff --quiet; then
70- git add build.gradle
70+ git add build.gradle.kts
7171 git commit -m " [Automated] Release ${BASE} "
7272 fi
7373 git push $DRYRUN --atomic --set-upstream origin $RELEASE_BRANCH
8282
8383CANDIDATE=$( ./gradlew printVersion -Psnapshot=false | grep ' Version:' | cut -f2 -d' ' )
8484
85- git add build.gradle
85+ git add build.gradle.kts
8686git commit -m " [Automated] Bump dev version to ${CANDIDATE} "
8787
8888git push $DRYRUN --atomic --set-upstream origin $BRANCH
Original file line number Diff line number Diff line change 2222 with :
2323 github-token : ${{secrets.GITHUB_TOKEN}}
2424 script : |
25- const list = await github.issues.listMilestones({
25+ const list = await github.rest. issues.listMilestones({
2626 owner: context.repo.owner,
2727 repo: context.repo.repo,
2828 state: 'open'
3939 github-token : ${{secrets.GITHUB_TOKEN}}
4040 script : |
4141 // Confusingly, the issues api is used because pull requests are issues
42- await github.issues.update({
42+ await github.rest. issues.update({
4343 owner: context.repo.owner,
4444 repo: context.repo.repo,
4545 issue_number: ${{ github.event.pull_request.number }},
Original file line number Diff line number Diff line change 2525 with :
2626 github-token : ${{secrets.GITHUB_TOKEN}}
2727 script : |
28- const milestones = await github.paginate(github.issues.listMilestones, {
28+ const milestones = await github.paginate(github.rest. issues.listMilestones, {
2929 owner: context.repo.owner,
3030 repo: context.repo.repo,
3131 state: 'all'
4444 with :
4545 github-token : ${{secrets.GITHUB_TOKEN}}
4646 script : |
47- await github.issues.updateMilestone({
47+ await github.rest. issues.updateMilestone({
4848 owner: context.repo.owner,
4949 repo: context.repo.repo,
5050 state: 'closed',
Original file line number Diff line number Diff line change @@ -16,7 +16,7 @@ plugins {
1616 id(" com.datadoghq.native-root" )
1717}
1818
19- version = " 1.38 .0"
19+ version = " 1.39 .0"
2020
2121apply (plugin = " com.dipien.semantic-version" )
2222version = findProperty(" ddprof_version" ) as ? String ? : version
You can’t perform that action at this time.
0 commit comments