CI: add action to sync examples from Provider #335
Workflow file for this run
This file contains hidden or 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
| name: E2E Test Check | |
| on: | |
| pull_request: | |
| branches: | |
| - master | |
| - main | |
| types: [ 'opened', 'synchronize' ] | |
| paths: | |
| - '.github/**' | |
| - '.github/workflows/**' | |
| - 'quickstarts/**' | |
| jobs: | |
| e2e-check: | |
| runs-on: ubuntu-latest | |
| name: 'e2e check' | |
| steps: | |
| - name: checkout | |
| uses: actions/checkout@v3 | |
| - name: Checking the max commits number | |
| run: | | |
| commitNum=${{ github.event.pull_request.commits }} | |
| if [[ ${commitNum} -gt 1 ]]; then | |
| echo -e "\nERROR: The PR has ${commitNum} commits, and please rebase it to 1.\n" | |
| exit 1 | |
| fi | |
| - name: set id | |
| id: set-job-id | |
| uses: ayachensiyuan/[email protected] | |
| env: | |
| GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
| with: | |
| job-name: 'e2e check' | |
| - name: get pull request info | |
| run: | | |
| echo "repo name is" ${{github.event.pull_request.head.repo.full_name}} | |
| echo "branch is" ${{github.event.pull_request.head.ref}} | |
| echo "the current job id is ${{ steps.set-job-id.outputs.jobId }}" | |
| - name: e2e test | |
| run: | | |
| objectPath="github-action/${{github.repository}}/e2e/Action-${{github.run_number}}-${{github.run_id}}-${{ steps.set-job-id.outputs.jobId }}" | |
| curl -H "X-Fc-Invocation-Type:Async" -s https://example-ci-terrafoodule-ci-svrrwvrpnj.ap-southeast-1.fcapp.run/?branch=${{github.event.pull_request.head.ref}}\&repo_name=${{github.event.pull_request.head.repo.full_name}}\&oss_object_path=${objectPath} | |
| go run scripts/e2e_check.go ${objectPath} |