use postgres 17 on CI and locally #613
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: commit | |
| on: | |
| push: | |
| branches: | |
| - master | |
| jobs: | |
| commit: | |
| runs-on: ubuntu-24.04 | |
| strategy: | |
| fail-fast: false | |
| steps: | |
| - uses: actions/checkout@v3 | |
| - uses: 8398a7/action-slack@v3 | |
| with: | |
| status: custom | |
| custom_payload: | | |
| { | |
| attachments: [{ | |
| author_name: `${{ github.actor }}`, | |
| author_link: `https://github.com/${{ github.actor }}`, | |
| author_icon: `https://github.com/${{ github.actor }}.png?size=32`, | |
| text: `${{ github.event.head_commit.message }}`, | |
| title_link: `https://github.com/${{ github.repository }}/commit/${{ github.sha }}`, | |
| title: `${{ github.sha }}`, | |
| }] | |
| } | |
| env: | |
| SLACK_WEBHOOK_URL: ${{ secrets.COMMIT_WEBHOOK }} | |
| if: always() | |
| continue-on-error: true |