-
Notifications
You must be signed in to change notification settings - Fork 83
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
add workflow to label cherry-pick versions on Pre-Commit-CI PRs
- Loading branch information
1 parent
2583225
commit 8e81c5c
Showing
2 changed files
with
45 additions
and
0 deletions.
There are no files selected for viewing
This file contains 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,8 @@ | ||
--- | ||
precommit-labels: | ||
- 'CherryPick' | ||
- '6.15.z' | ||
- '6.14.z' | ||
- '6.13.z' | ||
- '6.12.z' | ||
|
This file contains 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,37 @@ | ||
name: add cherry-pick version labels to pre-commit-ci pr's | ||
|
||
on: | ||
pull_request_target: | ||
types: | ||
- opened | ||
- ready_for_review | ||
- reopened | ||
- synchronize | ||
|
||
jobs: | ||
add-labels: | ||
runs-on: ubuntu-latest | ||
if: github.actor == 'pre-commit-bot' | ||
steps: | ||
- name: Checkout code | ||
uses: actions/checkout@v2 | ||
|
||
- name: Read labels from YAML | ||
id: read-labels | ||
run: | | ||
LABELS=$(python3 -c "import yaml; print(' '.join(yaml.safe_load(open('./.github/labels.yaml'))['precommit-labels']))") | ||
echo "LABELS=$LABELS" >> "$GITHUB_OUTPUT" | ||
- name: apply cherry-pick version labels. | ||
uses: actions/github-script@v7 | ||
with: | ||
github-token: ${{ secrets.CHERRYPICK_PAT }} | ||
script: | | ||
const labels = '${{ steps.read-labels.outputs.LABELS }}'; | ||
const prNumber = '${{ github.event.number }}'; | ||
github.rest.issues.addLabels({ | ||
issue_number: prNumber, | ||
owner: context.repo.owner, | ||
repo: context.repo.repo, | ||
labels: labels.split(' ') | ||
}); |