This commit is contained in:
Chuck Lantz 2021-02-04 08:38:42 -08:00
Родитель a320974e31
Коммит 562c2e251a
3 изменённых файлов: 6 добавлений и 1 удалений

2
.github/workflows/cgmanifest.yml поставляемый
Просмотреть файл

@ -58,6 +58,8 @@ jobs:
# Push updated cgmnaifest.json to source control
git config --global user.email "vscr-feedback@microsoft.com"
git config --global user.name "CI"
git config pull.rebase false
git pull "https://ci:${{ secrets.GITHUB_TOKEN }}@github.com/${{ github.repository }}" "HEAD:${{ github.ref }}"
git add cgmanifest.json
git commit -m 'Automated update for CG' \
&& git push "https://ci:${{ secrets.GITHUB_TOKEN }}@github.com/${{ github.repository }}" "HEAD:${{ github.ref }}" \

2
.github/workflows/patch.yml поставляемый
Просмотреть файл

@ -51,6 +51,8 @@ jobs:
# Add resulting status.json file back to source control
git config --global user.email "vscr-feedback@microsoft.com"
git config --global user.name "CI"
git config pull.rebase false
git pull "https://ci:${{ secrets.GITHUB_TOKEN }}@github.com/${{ github.repository }}" "HEAD:${{ github.ref }}"
git add build/patch/status.json
git commit -m 'Automated update' \
&& git push "https://ci:${{ secrets.GITHUB_TOKEN }}@github.com/${{ github.repository }}" "HEAD:${{ github.ref }}" \

3
.github/workflows/script-library.yml поставляемый
Просмотреть файл

@ -60,7 +60,8 @@ jobs:
build/vscdc copy-library-scripts
git config --global user.email "vscr-feedback@microsoft.com"
git config --global user.name "CI"
git pull
git config pull.rebase false
git pull "https://ci:${{ secrets.GITHUB_TOKEN }}@github.com/${{ github.repository }}" "HEAD:${{ github.ref }}"
git add -u
git commit -m 'Automated update for script library changes' \
&& git push "https://ci:${{ secrets.GITHUB_TOKEN }}@github.com/${{ github.repository }}" "HEAD:${{ github.ref }}" \