Lines Matching +full:run +full:- +full:script

5 # https://docs.github.com/en/actions/learn-github-actions/contexts#example-usage-of-the-github-cont…
6 …://docs.github.com/en/actions/learn-github-actions/variables#using-the-vars-context-to-access-conf…
7 # https://docs.github.com/en/actions/learn-github-actions/variables#default-environment-variables
9 # The head ref or source branch of the pull request in a workflow run.
10 …# This property is only set when the event that triggers a workflow run is either pull_request or …
11 # For example, feature-branch-1
13 # The name of the base ref or target branch of the pull request in a workflow run.
14 …# This is only set when the event that triggers a workflow run is either pull_request or pull_requ…
17 echo -e "\nPull request from the branch (${BUILD_BRANCH}) to the branch (${BUILD_TARGET_BRANCH})"
19 # The short ref name of the branch or tag that triggered the workflow run.
21 # For example, feature-branch-1 or 57/merge for a pull request
29 # echo -e "\nPush Build on the branch (${BUILD_BRANCH})"
32 # echo -e "\nPull Request Build from the branch (${TRAVIS_PULL_REQUEST_BRANCH})"
35 echo -e "\nGet boot.sh from from the branch (${BUILD_BRANCH})"
36 url="https://raw.githubusercontent.com/ComboStrap/combo_test/${BUILD_BRANCH}/resources/script/ci/bo…
37 if [ -z "$TOKEN" ]; then
39 … https://docs.github.com/en/actions/using-workflows/reusing-workflows#passing-inputs-and-secrets-t…
42 response=$(curl -H "Authorization: token ${TOKEN}" -s -w "%{http_code}" -o "boot.sh" "$url")
43 # -s silence
44 # -w ask to print the http code
45 # -o write the body to this file
47 echo "Error when getting the boot.sh script at $url."
53 echo -e "\nRun boot.sh"