-
-
Notifications
You must be signed in to change notification settings - Fork 908
build: add workflow to label applicable PRs as good first PRs #5470
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Merged
Merged
Changes from all commits
Commits
File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,84 @@ | ||
#/ | ||
# @license Apache-2.0 | ||
# | ||
# Copyright (c) 2025 The Stdlib Authors. | ||
# | ||
# Licensed 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. | ||
#/ | ||
|
||
# Workflow name: | ||
name: label_good_first_prs | ||
|
||
# Workflow triggers: | ||
on: | ||
pull_request_target: | ||
types: | ||
- opened | ||
- closed | ||
- synchronize | ||
- reopened | ||
- edited | ||
|
||
# Workflow jobs: | ||
jobs: | ||
|
||
# Define a job which automatically labels pull requests based on whether they reference good first issues | ||
labeler: | ||
|
||
# Define job name: | ||
name: 'Label PRs for issues with label "Good First Issue" as "Good First PR"s' | ||
|
||
# Only run this job if the pull request did not have label `automated-pr`: | ||
if: contains(github.event.pull_request.labels.*.name, 'automated-pr') == false | ||
|
||
# Define job permissions: | ||
permissions: | ||
contents: read | ||
pull-requests: write | ||
|
||
# Define the type of virtual host machine: | ||
runs-on: ubuntu-latest | ||
|
||
# Define the sequence of job steps: | ||
steps: | ||
# Check whether any of the referenced issues is a "Good First Issue": | ||
- name: 'Check whether any of the referenced issues is a "Good First Issue"' | ||
id: 'check-pr' | ||
env: | ||
PR_NUMBER: ${{ github.event.pull_request.number }} | ||
run: | | ||
bool=$(. "$GITHUB_WORKSPACE/.github/workflows/scripts/references_good_first_issue $PR_NUMBER) | ||
echo "good-first-pr=$bool" >> $GITHUB_OUTPUT | ||
|
||
# Add "Good First PR" label if PR references a "Good First Issue" | ||
- name: 'Add "Good First PR" label if PR references a "Good First Issue"' | ||
if: ${{ steps.check-pr.outputs.good-first-pr == 'true' }} | ||
# Pin action to full-length commit SHA | ||
uses: actions/github-script@60a0d83039c74a4aee543508d2ffcb1c3799cdea # v7.0.1 | ||
with: | ||
github-token: ${{ secrets.STDLIB_BOT_PAT_REPO_WRITE }} | ||
script: | | ||
const { data: pr } = await github.rest.pulls.get({ | ||
'owner': context.repo.owner, | ||
'repo': context.repo.repo, | ||
'pull_number': context.payload.pull_request.number | ||
}); | ||
const labels = context.payload.pull_request.labels.map( label => label.name ); | ||
if ( !labels.includes( 'Good First PR' ) ) { | ||
await github.rest.issues.addLabels({ | ||
'owner': context.repo.owner, | ||
'repo': context.repo.repo, | ||
'issue_number': context.payload.pull_request.number, | ||
'labels': [ 'Good First PR' ] | ||
}); | ||
} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,138 @@ | ||
#!/usr/bin/env bash | ||
# | ||
# @license Apache-2.0 | ||
# | ||
# Copyright (c) 2025 The Stdlib Authors. | ||
# | ||
# Licensed 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. | ||
|
||
# Script to check whether a PR references an issue with label "Good First Issue". | ||
# | ||
# Usage: references_good_first_issue PR_NUMBER | ||
# | ||
# Arguments: | ||
# | ||
# PR_NUMBER Pull request number. | ||
# | ||
# Environment variables: | ||
# | ||
# GITHUB_TOKEN GitHub token for authentication. | ||
|
||
# Ensure that the exit status of pipelines is non-zero in the event that at least one of the commands in a pipeline fails: | ||
set -o pipefail | ||
|
||
|
||
# VARIABLES # | ||
|
||
# Get the pull request number: | ||
pr_number="$1" | ||
|
||
# GitHub API base URL: | ||
GITHUB_API_URL="https://api.github.com" | ||
|
||
# Repository owner and name: | ||
REPO_OWNER="stdlib-js" | ||
REPO_NAME="stdlib" | ||
|
||
# Exit codes: | ||
SUCCESS=0 | ||
ERROR=1 | ||
|
||
|
||
# FUNCTIONS # | ||
|
||
# Error handler. | ||
# | ||
# $1 - error status | ||
on_error() { | ||
echo 'ERROR: An error was encountered during execution.' >&2 | ||
exit "$1" | ||
} | ||
|
||
# Makes GitHub API requests. | ||
# | ||
# $1 - HTTP method (GET or POST) | ||
# $2 - API endpoint | ||
# $3 - data for POST requests | ||
github_api() { | ||
local method="$1" | ||
local endpoint="$2" | ||
local data="$3" | ||
|
||
# Initialize an array to hold curl headers: | ||
local headers=() | ||
|
||
# If GITHUB_TOKEN is set, add the Authorization header: | ||
if [ -n "$GITHUB_TOKEN" ]; then | ||
headers+=("-H" "Authorization: token $GITHUB_TOKEN") | ||
fi | ||
|
||
# Determine the HTTP method and construct the curl command accordingly... | ||
case "$method" in | ||
GET) | ||
curl -s "${headers[@]}" "$GITHUB_API_URL$endpoint" | ||
;; | ||
POST) | ||
# For POST requests, always set the Content-Type header: | ||
headers+=("-H" "Content-Type: application/json") | ||
|
||
# If data is provided, include it in the request: | ||
if [ -n "$data" ]; then | ||
curl -s -X POST "${headers[@]}" -d "$data" "$GITHUB_API_URL$endpoint" | ||
else | ||
# Handle cases where POST data is required but not provided: | ||
echo "POST request requires data." | ||
on_error $ERROR | ||
fi | ||
;; | ||
*) | ||
echo "Invalid HTTP method: $method" | ||
on_error $ERROR | ||
;; | ||
esac | ||
} | ||
|
||
# Main execution sequence. | ||
main() { | ||
if [ -z "$pr_number" ]; then | ||
echo "ERROR: Pull request number is required" >&2 | ||
on_error $ERROR | ||
fi | ||
|
||
# Fetch pull request details: | ||
pr_details=$(github_api "GET" "/repos/$REPO_OWNER/$REPO_NAME/pulls/$pr_number") | ||
pr_title=$(echo "$pr_details" | jq -r '.title') | ||
pr_body=$(echo "$pr_details" | jq -r '.body') | ||
|
||
issue_numbers=$(echo $pr_body | grep -Ei '#[0-9]+' | grep -oEi '[0-9]+' | sort | uniq) | ||
if [ -z "$issue_numbers" ]; then | ||
echo 'false' | ||
exit $SUCCESS | ||
fi | ||
|
||
for issue in $issue_numbers; do | ||
issue_details=$(github_api "GET" "/repos/$REPO_OWNER/$REPO_NAME/issues/$issue") | ||
|
||
bool=$(echo $issue_details | jq '.labels | any(.name == "Good First Issue")') | ||
if [ "$bool" == 'true' ]; then | ||
echo 'true' | ||
exit $SUCCESS | ||
fi | ||
done | ||
|
||
echo 'false' | ||
exit $SUCCESS | ||
} | ||
|
||
# Call main with all command-line arguments: | ||
main "$@" |
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Uh oh!
There was an error while loading. Please reload this page.