ATC-rules-update #101
This file contains hidden or 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: "ATC-rules-update" | |
| on: | |
| workflow_dispatch: | |
| schedule: | |
| - cron: '0 20 * * 0' | |
| jobs: | |
| atc_check_for_updates: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v5 | |
| with: | |
| fetch-depth: '0' | |
| - name: ⚙ set environment stuff | |
| shell: bash | |
| run: | | |
| echo "build: $GITHUB_RUN_ID" | |
| builddate=$(date '+%Y-%m-%d') | |
| echo "builddate: $builddate" | |
| branch_name="atc-coding-rules-updater-pipeline-run-$builddate-build-$GITHUB_RUN_ID" | |
| echo $branch_name | |
| echo "BRANCH_NAME=$branch_name" >> $GITHUB_ENV | |
| - name: '⚙ Install ATC Coding Rules updater' | |
| run: dotnet tool install --global atc-coding-rules-updater | |
| - name: ♻️ Run ATC Coding Rules updater | |
| run: atc-coding-rules-updater run --projectPath . --verbose --projectTarget DotNet10 --useTemporarySuppressions | |
| - name: 🐛 Git - show changes | |
| shell: bash | |
| run: | | |
| set -x | |
| git status | |
| git diff | |
| git config --list --show-origin | |
| - run: | | |
| dotnet build -c Release | |
| - name: 💾Create PR | |
| uses: peter-evans/create-pull-request@v7 | |
| with: | |
| commit-message: 'Pipeline ran atc-coding-rules-updater Build: ${{ env.GITHUB_RUN_ID}}' | |
| title: ATC Coding Rules Update | |
| body: ATC Coding Rules Updater has been auto-run on the project to update dependencies, rules and needed temporary exceptions | |
| labels: automated pr | |
| branch: ${{ env.BRANCH_NAME }} | |
| delete-branch: true | |
| token: ${{ secrets.PAT_WORKFLOWS }} |