Skip to content

Commit

Permalink
Add stub script for compatibility-labelling PRs
Browse files Browse the repository at this point in the history
This is a stub script that doesn't actually output true compatibility
information, it's just a demonstration showing what kind of behaviour
would be desirable.

It's aiming to show the part 1 of the workflow described in
scalacenter/sbt-version-policy#179:

> **Keep devs aware of the compatibility of the PR they're working on** : When a PR is opened on a library repository, an automated workflow comments-on or labels the PR, making them aware that _"This PR breaks binary/source compatibility"_ - the information here would come from the `sbt-version-policy` plugin, but wouldn't require setting a `versionPolicyIntention` - it just establishes _what_ the level of compatibility the PR entails, so that the developer is aware. The assumption here is that whatever the developer is doing, they need to do it, and should just know the compatibility cost the PR is going to have (and possibly, though not necessarily, once informed they may be able to modify the PR to improve the compatibility).

The script is written to add-and-remove labels as appropriate, if
the required compatibility label (eg 'Breaks Binary Compatibility') wasn't already
present, we assume this is new information and leave a detailed comment.
In general, to reduce noise, we wouldn't necessarily want to add a new
comment on every push, better to just tell the user how they can get this
information by running locally...
  • Loading branch information
rtyley committed Nov 29, 2023
1 parent c4e5a69 commit 5bdf13a
Show file tree
Hide file tree
Showing 2 changed files with 38 additions and 0 deletions.
16 changes: 16 additions & 0 deletions .github/workflows/tryout-sbt-version-policy.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
name: Compatibility Report
on:
workflow_dispatch:
pull_request:

jobs:
add_compatibility_report_to_pr:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v3
- name: Add Compatibility Report
run: ./update_pr_with_compatibility_info.sh ${{ github.event.issue.number }}
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
GH_REPO: ${{ github.repository }}
22 changes: 22 additions & 0 deletions update_pr_with_compatibility_info.sh
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@
#!/bin/bash

pr_number=$1

required_label="Breaks Binary Compatibility"

current_labels=$(gh pr view $pr_number --json labels --jq '.labels[].name | select(endswith("Compatibility"))')

printf "Current labels:\n%s\n\n" "$current_labels"

current_labels_to_remove=$(grep -Fx --invert-match "$required_label" <(echo "$current_labels") | paste -sd ',' -)

echo "current_labels_to_remove = $current_labels_to_remove"

gh pr edit $pr_number --remove-label "$current_labels_to_remove" --add-label "$required_label"

if grep -Fxq "$required_label" <(echo "$current_labels") ; then
echo "The '$required_label' label was already present, no need to comment"
else
echo "The '$required_label' label was not already present, PR has changed compatability level"
gh pr comment $pr_number --body "Mock info: This PR $required_label when compared against most recent release 3.0.0. Details..."
fi

0 comments on commit 5bdf13a

Please sign in to comment.