|
|
|
|
@ -5,9 +5,45 @@ on:
@@ -5,9 +5,45 @@ on:
|
|
|
|
|
|
|
|
|
|
run-name: Merge Dependabot PR ${{ github.ref_name }} |
|
|
|
|
|
|
|
|
|
env: |
|
|
|
|
GH_TOKEN: ${{ secrets.GH_ACTIONS_REPO_TOKEN }} |
|
|
|
|
|
|
|
|
|
jobs: |
|
|
|
|
merge-dependabot-pr: |
|
|
|
|
permissions: write-all |
|
|
|
|
uses: spring-io/spring-github-workflows/.github/workflows/spring-merge-dependabot-pr.yml@1e8b0587a1f4f01697f9753fa3339c3e0d30f396 |
|
|
|
|
with: |
|
|
|
|
mergeArguments: '--auto --rebase' |
|
|
|
|
runs-on: ubuntu-latest |
|
|
|
|
if: github.actor == 'dependabot[bot]' |
|
|
|
|
steps: |
|
|
|
|
|
|
|
|
|
- uses: actions/checkout@v4 |
|
|
|
|
with: |
|
|
|
|
show-progress: false |
|
|
|
|
|
|
|
|
|
- uses: actions/setup-java@v4 |
|
|
|
|
with: |
|
|
|
|
distribution: temurin |
|
|
|
|
java-version: 17 |
|
|
|
|
|
|
|
|
|
- name: Set Milestone to Dependabot Pull Request |
|
|
|
|
id: set-milestone |
|
|
|
|
run: | |
|
|
|
|
if test -f pom.xml |
|
|
|
|
then |
|
|
|
|
CURRENT_VERSION=$(mvn help:evaluate -Dexpression="project.version" -q -DforceStdout) |
|
|
|
|
else |
|
|
|
|
CURRENT_VERSION=$(cat gradle.properties | sed -n '/^version=/ { s/^version=//;p }') |
|
|
|
|
fi |
|
|
|
|
export CANDIDATE_VERSION=${CURRENT_VERSION/-SNAPSHOT} |
|
|
|
|
MILESTONE=$(gh api repos/$GITHUB_REPOSITORY/milestones --jq 'map(select(.due_on != null and (.title | startswith(env.CANDIDATE_VERSION)))) | .[0] | .title') |
|
|
|
|
|
|
|
|
|
if [ -z $MILESTONE ] |
|
|
|
|
then |
|
|
|
|
gh run cancel ${{ github.run_id }} |
|
|
|
|
echo "::warning title=Cannot merge::No scheduled milestone for $CURRENT_VERSION version" |
|
|
|
|
else |
|
|
|
|
gh pr edit ${{ github.event.pull_request.number }} --milestone $MILESTONE |
|
|
|
|
echo mergeEnabled=true >> $GITHUB_OUTPUT |
|
|
|
|
fi |
|
|
|
|
|
|
|
|
|
- name: Merge Dependabot pull request |
|
|
|
|
if: steps.set-milestone.outputs.mergeEnabled |
|
|
|
|
run: gh pr merge ${{ github.event.pull_request.number }} --auto --rebase |
|
|
|
|
|