-
Notifications
You must be signed in to change notification settings - Fork 24
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
CI: Add workflow file for labelling issues as 'High Priority'
- Loading branch information
Showing
1 changed file
with
36 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,36 @@ | ||
name: Create Internal issue when the "High Priority" label is applied | ||
on: | ||
issues: | ||
types: | ||
- labeled | ||
|
||
env: | ||
GH_TOKEN: ${{ secrets.DUCKDBLABS_BOT_TOKEN }} | ||
# an event triggering this workflow is either an issue or a pull request, | ||
# hence only one of the numbers will be filled in the TITLE_PREFIX | ||
TITLE_PREFIX: "[duckdb-r/#${{ github.event.issue.number }}]" | ||
PUBLIC_ISSUE_TITLE: ${{ github.event.issue.title }} | ||
|
||
jobs: | ||
create_or_label_issue: | ||
if: github.event.label.name == 'High Priority' | ||
runs-on: ubuntu-latest | ||
steps: | ||
- name: Get mirror issue number | ||
run: | | ||
gh issue list --repo duckdblabs/duckdb-internal --search "${TITLE_PREFIX}" --json title,number --jq ".[] | select(.title | startswith(\"$TITLE_PREFIX\")).number" > mirror_issue_number.txt | ||
echo "MIRROR_ISSUE_NUMBER=$(cat mirror_issue_number.txt)" >> $GITHUB_ENV | ||
- name: Print whether mirror issue exists | ||
run: | | ||
if [ "$MIRROR_ISSUE_NUMBER" == "" ]; then | ||
echo "Mirror issue with title prefix '$TITLE_PREFIX' does not exist yet" | ||
else | ||
echo "Mirror issue with title prefix '$TITLE_PREFIX' exists with number $MIRROR_ISSUE_NUMBER" | ||
fi | ||
- name: Create or label issue | ||
run: | | ||
if [ "$MIRROR_ISSUE_NUMBER" == "" ]; then | ||
gh issue create --repo duckdblabs/duckdb-internal --label "R" --label "High Priority" --title "$TITLE_PREFIX - $PUBLIC_ISSUE_TITLE" --body "See https://github.com/duckdb/duckdb/issues/${{ github.event.issue.number }}" | ||
fi |