configure time error reporting for STDPAR feature and CI test #881
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: CI | |
| on: [push, pull_request] | |
| jobs: | |
| call-quality: | |
| name: Code Quality | |
| uses: ./.github/workflows/quality.yml | |
| secrets: inherit | |
| call-builds: | |
| name: Builds | |
| uses: ./.github/workflows/builds.yml | |
| secrets: inherit | |
| call-webapp: | |
| name: Webapp | |
| uses: ./.github/workflows/webapp.yml | |
| secrets: inherit | |
| call-deploy: | |
| if: github.event_name != 'pull_request' | |
| needs: | |
| - call-quality | |
| - call-builds | |
| name: Deploy Source | |
| uses: ./.github/workflows/deploy.yml | |
| secrets: inherit | |
| draft-release: | |
| if: github.event_name == 'push' && startsWith( github.ref, 'refs/tags/' ) | |
| needs: | |
| - call-webapp | |
| - call-deploy | |
| runs-on: ubuntu-latest | |
| env: | |
| GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - name: Generate a changelog | |
| id: changelog | |
| uses: metcalfc/changelog-generator@v1.0.0 | |
| with: | |
| myToken: ${{ secrets.GITHUB_TOKEN }} | |
| - name: Print the changelog | |
| run: echo "${{ steps.changelog.outputs.changelog }}" | |
| - name: Create draft release | |
| id: draft_release | |
| uses: actions/create-release@v1 | |
| with: | |
| tag_name: ${{ github.ref }} | |
| release_name: Release ${{ github.ref }} | |
| body: ${{ steps.changelog.outputs.changelog }} | |
| draft: true |