Bump cypress-io/github-action from 4 to 6 #114
Workflow file for this run
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
# This workflow was added by CodeSee. Learn more at https://codesee.io/ | |
# This is v2.0 of this workflow file | |
on: | |
pull_request_target: | |
types: [opened, synchronize, reopened] | |
name: MeshMap Screenshot Service | |
permissions: read-all | |
jobs: | |
codesee: | |
runs-on: ubuntu-latest | |
continue-on-error: true | |
name: Run the MeshMap screenshot service | |
steps: | |
- name: Set PR number | |
run: | | |
export pull_number=$(jq --raw-output .pull_request.number "$GITHUB_EVENT_PATH") | |
echo "PULL_NO=$pull_number" >> $GITHUB_ENV | |
- uses: actions/checkout@v3 | |
with: | |
path: action | |
- id: test_result | |
uses: ./action | |
with: | |
githubToken: ${{ secrets.GITHUB_TOKEN }} | |
providerToken: ${{ secrets.PROVIDER_TOKEN }} | |
applicationId: c791ec8f-ec1a-47c1-b606-d39982e42ca6 | |
prNumber: ${{ env.PULL_NO }} |