chore: changelog #4460
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: 🤖 Auto update bundled & used icons | |
on: | |
pull_request: | |
workflow_dispatch: | |
jobs: | |
bundling: | |
if: ${{ !contains(github.head_ref , 'release/') }} | |
runs-on: ubuntu-latest | |
steps: | |
- uses: taiga-family/ci/actions/setup/[email protected] | |
- uses: taiga-family/ci/actions/setup/[email protected] | |
- uses: taiga-family/ci/actions/setup/[email protected] | |
- run: | | |
npx nx prebuild icons | |
npx nx build icons | |
npx ts-node ./scripts/generate-used-icons.ts | |
npx eslint ./projects/cdk/constants/used-icons.ts --fix || echo "no file matching" | |
npx eslint ./projects/demo/used-icons.ts --fix || echo "no file matching" | |
npx prettier ./projects/demo/used-icons.ts --write || echo "no file matching" | |
npx prettier ./projects/cdk/constants/used-icons.ts --write || echo "no file matching" | |
- uses: taiga-family/ci/actions/auto/[email protected] | |
with: | |
message: icons have changed | |
token: ${{ secrets.TAIGA_FAMILY_BOT_PAT }} |