bugfix: Don't apply Next flags on 3.3 LTS #477
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: Auto update build plan | |
| permissions: | |
| contents: write | |
| pull-requests: write | |
| on: | |
| workflow_dispatch: | |
| schedule: | |
| # Every friday at 4 PM | |
| - cron: "0 16 * * 5" | |
| push: | |
| paths: | |
| - coordinator/** | |
| jobs: | |
| build-plan: | |
| runs-on: ubuntu-22.04 | |
| if: github.repository == 'VirtusLab/community-build3' && contains(github.ref, 'master') | |
| steps: | |
| - uses: actions/checkout@v6 | |
| - uses: coursier/cache-action@v8 | |
| - uses: coursier/setup-action@v2 | |
| with: | |
| apps: scala-cli:1.12.5 | |
| - name: Get Date | |
| id: get-date | |
| run: echo "week-start=$(date -dmonday +%Y%m%d)" >> $GITHUB_OUTPUT | |
| # - name: Cache coordinator data | |
| # uses: actions/cache@v4 | |
| # with: | |
| # # coordinator stores cache in current working directory | |
| # path: data/ | |
| # key: coordinator-data-cache-${{ steps.get-date.outputs.week-start}} | |
| - name: Build plan | |
| # Limit each build plan to at most 1000 most project. | |
| # GitHub actions has problems when rendering workflow of more then 1k jobs | |
| # Projects are grouped based on GitHub stars | |
| run: scala-cli run coordinator/ -- 3 -1 -1 1000 "" coordinator/configs | |
| - name: Upload artifacts | |
| uses: actions/upload-artifact@v4 | |
| with: | |
| name: "buildConfig" | |
| path: | | |
| .github/workflows/buildPlan*.yaml | |
| .github/workflows/buildConfig.json | |
| - uses: tibdex/github-app-token@v1 | |
| id: generate-token | |
| with: | |
| app_id: 303718 | |
| private_key: ${{ secrets.OPENCB_CONFIG_UPDATE_TOKEN }} | |
| - name: Create PR | |
| uses: peter-evans/create-pull-request@v8 | |
| with: | |
| token: ${{ steps.generate-token.outputs.token }} | |
| commit-message: Update build config | |
| assignees: WojciechMazur | |
| branch: build/scheduled-update | |
| branch-suffix: timestamp | |
| delete-branch: true | |
| title: "[Bot] Update build config" | |
| draft: false | |
| add-paths: | | |
| .github/workflows/buildPlan*.yaml | |
| .github/workflows/buildConfig.json |