Benny Meade

Results 7 comments of Benny Meade

I would love github actions support too. I did test it just to see what happens: ``` - name: Slack notification with total pass/fail if: always() run: | npx cypress-slack-reporter...

Yes I believe so, in a GH Actions workflow the synatx for calling a secret is like this: `SLACK_WEBHOOK_URL: ${{ secrets.SLACK_WEBHOOK_TEST_AUTOMATION }}` ... and it behaves the same as an...

`echo "SLACK_WEBHOOK_URL: ${{ secrets.SLACK_WEBHOOK_TEST_AUTOMATION }}"` but obviously for security they mask the output. ``` SLACK_WEBHOOK_URL: *** ```

Bravo, that worked : ) ![image](https://user-images.githubusercontent.com/1033474/117861436-ba44b880-b291-11eb-99fd-8da0ca459256.png)

Yes definitely, I'm happy to do that @YOU54F Thanks again for your speedy responses.

Here's my GH workflow for others benefit: ``` name: Cypress Slack notify on: workflow_dispatch: jobs: cypress-test: name: Run on Chrome 89 runs-on: ubuntu-18.04 container: cypress/browsers:node14.16.0-chrome89-ff86 steps: - uses: actions/checkout@v2 -...

Hi @ryanthemanuel & @mjhenkes I've been unable to reproduce this error outside of our mono-repo. Even a small example repo I put together on a Netlify stack works fine. Our...