Lines Matching +full:github +full:- +full:token
5 # https://docs.github.com/en/actions/learn-github-actions/contexts#example-usage-of-the-github-cont…
6 # https://docs.github.com/en/actions/learn-github-actions/variables#using-the-vars-context-to-acces…
7 # https://docs.github.com/en/actions/learn-github-actions/variables#default-environment-variables
11 # For example, feature-branch-1
17 echo -e "\nPull request from the branch (${BUILD_BRANCH}) to the branch (${BUILD_TARGET_BRANCH})"
20 # This value matches the branch or tag name shown on GitHub.
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})"
37 if [ -z "$TOKEN" ]; then
38 echo 'The token variable is mandatory as first parameter'
39 …your workflow: https://docs.github.com/en/actions/using-workflows/reusing-workflows#passing-inputs…
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
53 echo -e "\nRun boot.sh"