Update CSS for new Chromium scrollbars, enhance JS animations #61
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: Notify on push | |
on: | |
push: | |
branches: | |
- "*" | |
- "*/*" | |
- "**" | |
- "!master" | |
workflow_dispatch: | |
jobs: | |
notify: | |
runs-on: self-hosted | |
steps: | |
- name: Send notification | |
env: | |
CONFIGS_LOCATION_BASE: ${{ secrets.CONFIGS_LOCATION_BASE }} | |
run: | | |
source $CONFIGS_LOCATION_BASE/docker.env; | |
curl http://127.0.0.1:$NOTIFIER_PUBLISH_PORT -d "{\"error\":false,\"args\":[\"User $GITHUB_ACTOR pushed to branch ${GITHUB_REF#refs/heads/}\"],\"tag\":\"ci\"}" || | |
echo "Error while sending notification" |