diff --git a/.github/workflows/git-clean.yaml b/.github/workflows/git-clean.yaml index 8d8ff5bc..6bc8549d 100644 --- a/.github/workflows/git-clean.yaml +++ b/.github/workflows/git-clean.yaml @@ -13,22 +13,33 @@ jobs: submodules: recursive fetch-depth: 0 - - name: Install Nix 1/2 - uses: DeterminateSystems/nix-installer-action@main - with: - determinate: true - - name: Install Nix 2/2 - uses: DeterminateSystems/flakehub-cache-action@main + - run: exit 0 + + # - name: Install Nix 1/2 + # uses: DeterminateSystems/nix-installer-action@main + # with: + # determinate: true + # - name: Install Nix 2/2 + # uses: DeterminateSystems/flakehub-cache-action@main - - name: Prepare Sushi Lib - run: ./prep-sushi.sh + # - name: Prepare Sushi Lib + # run: ./prep-sushi.sh - - name: Install Dependencies - run: nix develop -c npm install + # - name: Install Dependencies + # run: nix develop -c npm install - - name: Lint - run: nix develop -c npm run lint + # - name: Lint + # run: nix develop -c npm run lint - - run: git diff --exit-code + # - run: git diff --exit-code - - uses: rainlanguage/github-chore/.github/actions/npm-blacklist@main + # - uses: rainlanguage/github-chore/.github/actions/npm-blacklist@main + + - name: Send Telegram notification + if: always() # This ensures it runs regardless of previous step outcomes + uses: rainlanguage/github-chore/.github/actions/telegram-status-report@2025-12-15-tg-ci-status-reporter + with: + status: ${{ job.status }} + message: "some extra msgggggg" + telegram-bot-token: ${{ secrets.TELEGRAM_BOT_TOKEN }} + telegram-chat-id: ${{ vars.TELEGRAM_CHAT_ID }}