chore(deps): update taiga-family/ci action to v1.77.0 (#906) #296
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: Release announce | |
on: | |
push: | |
branches: [main] | |
jobs: | |
run-release: | |
name: Announce | |
if: "contains(github.event.head_commit.message, 'chore(release)')" | |
runs-on: ubuntu-latest | |
steps: | |
- uses: taiga-family/ci/actions/setup/[email protected] | |
- uses: taiga-family/ci/actions/setup/[email protected] | |
- id: info | |
run: | | |
echo "version=v$(node -p "require('./libs/ng-morph/package.json').version")" >> $GITHUB_OUTPUT | |
echo "name=$(node -p "require('./libs/ng-morph/package.json').name")" >> $GITHUB_OUTPUT | |
- name: Announce to Telegram | |
uses: taiga-family/ci/actions/messenger/telegram/[email protected] | |
with: | |
chatId: ${{ secrets.TAIGA_TELEGRAM_CHAT_ID }} | |
topicId: ${{ secrets.TAIGA_TELEGRAM_CHAT_THREAD_ID }} | |
token: ${{ secrets.TAIGA_TELEGRAM_BOT_TOKEN }} | |
version: ${{ steps.info.outputs.version }} | |
textLink: ${{ steps.info.outputs.name }} | |
concurrency: | |
group: announce-${{ github.workflow }}-${{ github.ref }} | |
cancel-in-progress: true |