Skip to content
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

Add workflow to copy issues to github/ecosystem-api #3047

Merged
merged 1 commit into from
Oct 9, 2023
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
48 changes: 48 additions & 0 deletions .github/workflows/copy-to-ecosystem-api.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,48 @@
name: Copy to ecosytem-api

on:
issues:
types:
- labeled

jobs:
copy-issue:
name: Copy issue
runs-on: ubuntu-latest
if: github.event.label.name == 'feature'
steps:
- name: priority
uses: actions/github-script@626af12fe9a53dc2972b48385e7fe7dec79145c9
id: priority
with:
result-encoding: string
script: |
const labels = context.payload.issue.labels;
let priority = "unknown"
for (const label of labels) {
if (['P1','P2','P3','P4'].includes(label.name)){
priority = label.name
break
}
}
return priority

- name: Create an issue in the ecosystem-api repo
run: |
new_issue_url="$(gh issue create --title "$ISSUE_TITLE" --body "$ISSUE_BODY" --repo github/ecosystem-api)"
echo 'NEW_ISSUE='$new_issue_url >> $GITHUB_ENV
env:
GITHUB_TOKEN: ${{secrets.ISSUE_TRANSFER_TOKEN}}
ISSUE_TITLE: ${{ github.event.issue.title }}
ISSUE_BODY: ${{ github.event.issue.body }}

- name: Comment on the new issue
run: |
gh issue comment $NEW_ISSUE --body "This issue is an internal copy of $OLD_ISSUE, which was opened in the public [rest-api-description](https://github.com/github/rest-api-description) repo with priority $PRIORITY. Please transfer it to the appropriate feature team.

:exclamation: When you close this issue, please also comment on and close the original issue."
env:
GITHUB_TOKEN: ${{secrets.ISSUE_TRANSFER_TOKEN}}
NEW_ISSUE: ${{ env.NEW_ISSUE }}
OLD_ISSUE: ${{ github.event.issue.html_url }}
PRIORITY: ${{ steps.priority.outputs.result }}