CI #13716
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: CI | |
on: | |
schedule: | |
- cron: "*/30 * * * *" | |
workflow_dispatch: | |
jobs: | |
build: | |
runs-on: windows-2022 | |
steps: | |
- uses: actions/checkout@v4.1.6 | |
- run: | | |
git config --local core.autocrlf true | |
git config --local user.name "Microsoft GitHub User" | |
git config --local user.email msftgits@microsoft.com | |
- run: | | |
cd .\tools | |
.\launch.ps1 > ..\defconfig | |
- run: | | |
git add defconfig | |
git commit --message "Update to the latest Microsoft 365 builds" | |
git push |