Lines Matching full:git
39 # Simpler git auth if we use checkout action and forward the repo to release script
46 - name: Configure git identity
48 git config --global user.name ${{ github.actor }}
49 git config --global user.email ${{ github.actor }}@users.noreply.github.com
54 … git checkout -b ${{ github.event.inputs.version_number }} ${{ github.event.inputs.commit_id }}
55 echo "COMMIT_SHA_1=$(git rev-parse HEAD)" >> $GITHUB_ENV
75 git add .
76 git commit -m '[AUTO][RELEASE]: Update version number in manifest.yml'
77 git push -u origin ${{ github.event.inputs.version_number }}
88 git add .
89 git commit -m '[AUTO][RELEASE]: Update SBOM'
90 git push -u origin ${{ github.event.inputs.version_number }}
91 echo "COMMIT_SHA_2=$(git rev-parse HEAD)" >> $GITHUB_ENV
106 git push -u origin --delete ${{ github.event.inputs.version_number }}