chore: tables attached to domain description in load stage is not authorized starting from 1.2.0 but a config migration is automatically done ## Summary #2671
Workflow file for this run
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: Slack Notification | |
on: | |
push: | |
pull_request: | |
issues: | |
types: | |
- opened | |
- closed | |
- reopened | |
- edited | |
- deleted | |
- pinned | |
- unpinned | |
- assigned | |
- unassigned | |
- labeled | |
- unlabeled | |
- milestoned | |
- demilestoned | |
issue_comment: | |
types: [created, edited, deleted] | |
create: | |
delete: | |
jobs: | |
deploy: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: 8398a7/action-slack@v3 | |
with: | |
status: ${{ job.status }} | |
fields: repo,message,commit,author,action,eventName,ref,workflow,job,took,pullRequest # selectable (default: repo,message) | |
env: | |
SLACK_WEBHOOK_URL: ${{ secrets.SLACK_STARLAKE_CORE_WEBHOOK_URL }} # required | |
if: always() # Pick up events even if the job fails or is canceled. |