Skip to content

Commit

Permalink
ci: auto-assign milestones to pull requests
Browse files Browse the repository at this point in the history
  • Loading branch information
lidavidm committed Nov 15, 2023
1 parent 7cd106d commit 4822b70
Show file tree
Hide file tree
Showing 2 changed files with 52 additions and 0 deletions.
6 changes: 6 additions & 0 deletions .github/workflows/dev_pr.yml
Original file line number Diff line number Diff line change
Expand Up @@ -38,6 +38,7 @@ jobs:
persist-credentials: false

- name: Check title for Conventional Commits format
continue-on-error: true
if: |
github.event_name == 'pull_request_target' &&
(github.event.action == 'opened' ||
Expand All @@ -48,3 +49,8 @@ jobs:
script: |
const script = require(`${process.env.GITHUB_WORKSPACE}/.github/workflows/dev_pr/title_check.js`);
await script({github, context});
- name: Assign milestone
continue-on-error: true
run: |
./.github/workflows/dev_pr/milestone.sh "${GITHUB_REPOSITORY}" ${{github.event.number}}
46 changes: 46 additions & 0 deletions .github/workflows/dev_pr/milestone.sh
Original file line number Diff line number Diff line change
@@ -0,0 +1,46 @@
#!/usr/bin/env bash
# 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
#
# http://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.

# Assign a milestone to the given PR based on the open milestones and known
# releases.

set -euo pipefail

main() {
local -r repo="${1}"
local -r pr_number="${2}"
echo "On ${repo} pull ${pr_number}"

local -r latest_version=$(git ls-remote --heads upstream |
grep maint- |
sed -E 's/^.*maint-(.*)$/\1/' |
sort --version-sort |
tail -n1)
local -r milestone=$(gh api "/repos/${repo}/milestones" |
jq -r '.[] | .title' |
grep -E '^ADBC Libraries' |
grep -v "${latest_version}" |
head -n1)

echo "Latest tagged version: ${latest_version}"
echo "Assigning milestone: ${milestone}"

gh pr edit "${pr_number}" -m "${milestone}"
}

main "$@"

0 comments on commit 4822b70

Please sign in to comment.