ci: revert 113fe3687ff1af859fac0f8c23c33febd61b577e as PR from forks can not add to comment to the PR.

This commit is contained in:
Gaëtan Maisse 2020-12-06 18:50:47 +01:00
parent 4102c3d210
commit e21d30e69d
No known key found for this signature in database
GPG Key ID: D934C0EF3714A8A8

View File

@ -19,21 +19,3 @@ jobs:
--data '{"branch":"${{ github.event.pull_request.head.ref }}"}'
env:
CIRCLE_CI_TOKEN: ${{ secrets.CIRCLE_CI_TOKEN_GMAISSE_TEST }}
comment-pr:
if: github.event.label.name == 'run all e2e tests' && github.event.pull_request.head.repo.fork == true
name: Add reminder as PR comment
runs-on: ubuntu-latest
steps:
- uses: actions/github-script@v3
with:
script: |
const comment = "👋🏻 @${{ github.actor }}, you just added the `run all e2e tests` label so all the next runs of CircleCI pipelines will now include the extended e2e test suite.\n\n" +
"As this PR is coming from a fork I was not able to trigger CircleCI automatically so if you don't want to wait for the next branch update " +
"you can trigger a workflow manually [here](https://app.circleci.com/pipelines/github/storybookjs/storybook?branch=pull/${{ github.event.pull_request.number }})."
github.issues.createComment({
issue_number: context.issue.number,
owner: context.repo.owner,
repo: context.repo.repo,
body: comment
})