Skip to content
Merged
Show file tree
Hide file tree
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
4 changes: 2 additions & 2 deletions .github/workflows/copy-documentation-issue.yml
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ jobs:
new_issue_url="$(gh issue create --title "$ISSUE_TITLE" --body "$ISSUE_BODY" --repo github/api-platform --label "REST,openapi")"
echo 'NEW_ISSUE='$new_issue_url >> $GITHUB_ENV
env:
GITHUB_TOKEN: ${{secrets.ISSUE_TRANSFER_TOKEN}}
GITHUB_TOKEN: ${{secrets.REST_PUBLIC_ISSUE_COPY_TOKEN}}
ISSUE_TITLE: ${{ github.event.issue.title }}
ISSUE_BODY: ${{ github.event.issue.body }}

Expand All @@ -50,7 +50,7 @@ jobs:
:exclamation: When you close this issue, also comment on and close the original issue.
:question: Was this issue something that could have been caught by a linter? If so, suggest a new rule in [#api-platform](https://github.slack.com/archives/C1042T6MS)."
env:
GITHUB_TOKEN: ${{secrets.ISSUE_TRANSFER_TOKEN}}
GITHUB_TOKEN: ${{secrets.REST_PUBLIC_ISSUE_COPY_TOKEN}}
NEW_ISSUE: ${{ env.NEW_ISSUE }}
OLD_ISSUE: ${{ github.event.issue.html_url }}
PRIORITY: ${{ steps.priority.outputs.result }}
4 changes: 2 additions & 2 deletions .github/workflows/copy-feature-issue.yml
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ jobs:
new_issue_url="$(gh issue create --title "$ISSUE_TITLE" --body "$ISSUE_BODY" --repo github/api-platform)"
echo 'NEW_ISSUE='$new_issue_url >> $GITHUB_ENV
env:
GITHUB_TOKEN: ${{secrets.ISSUE_TRANSFER_TOKEN}}
GITHUB_TOKEN: ${{secrets.REST_PUBLIC_ISSUE_COPY_TOKEN}}
ISSUE_TITLE: ${{ github.event.issue.title }}
ISSUE_BODY: ${{ github.event.issue.body }}

Expand All @@ -45,7 +45,7 @@ jobs:

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