ci: improve timeout to snapshot from 4sec to 10sec #240
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
name: 'URL Upload Build Test' | |
on: # rebuild any PRs and main branch changes | |
pull_request: | |
push: | |
branches: | |
- main | |
- master | |
- 'releases/*' | |
jobs: | |
test: # make sure the action works on a clean machine without building | |
runs-on: ubuntu-latest | |
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@v4 | |
with: | |
path: action | |
- id: test_result | |
uses: ./action | |
with: | |
githubToken: ${{ secrets.GITHUB_TOKEN }} | |
mesheryToken: ${{ secrets.MESHERY_TOKEN }} | |
prNumber: ${{ env.PULL_NO }} | |
application_type: "Helm Chart" | |
application_url: "https://github.com/meshery/meshery.io/raw/master/charts/meshery-v0.6.86.tgz" |