Skip to content

Commit

Permalink
fix: forgot publish licence
Browse files Browse the repository at this point in the history
  • Loading branch information
splincode committed Sep 20, 2024
1 parent 2cff46f commit 4d7de6d
Show file tree
Hide file tree
Showing 14 changed files with 1,118 additions and 1,466 deletions.
31 changes: 0 additions & 31 deletions .github/workflows/announce.yml

This file was deleted.

10 changes: 5 additions & 5 deletions .github/workflows/auto-approve.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,8 +10,8 @@ jobs:
outputs:
matrix: ${{ steps.matrix.outputs.value }}
steps:
- uses: taiga-family/ci/actions/setup/checkout@v1.79.0
- uses: taiga-family/ci/actions/setup/variables@v1.79.0
- uses: taiga-family/ci/actions/setup/checkout@v1.80.0
- uses: taiga-family/ci/actions/setup/variables@v1.80.0
- id: matrix
if: env.IS_TAIGA_FAMILY_BOT_PR_AUTHOR == 'true'
run: echo "value=$JOBS_NAME" >> $GITHUB_OUTPUT
Expand All @@ -24,7 +24,7 @@ jobs:
matrix:
value: ${{ fromJSON(needs.setup.outputs.matrix) }}
steps:
- uses: taiga-family/ci/actions/run/wait-job@v1.79.0
- uses: taiga-family/ci/actions/run/wait-job@v1.80.0
with:
token: ${{ secrets.GITHUB_TOKEN }}
job: ${{ matrix.value }}
Expand All @@ -33,11 +33,11 @@ jobs:
needs: [wait]
runs-on: ubuntu-latest
steps:
- uses: taiga-family/ci/actions/auto/approve/double@v1.79.0
- uses: taiga-family/ci/actions/auto/approve/double@v1.80.0
with:
token1: ${{ secrets.GITHUB_TOKEN }}
token2: ${{ secrets.TAIGA_FAMILY_APPROVE_BOT_PAT }}
- uses: taiga-family/ci/actions/run/merge@v1.79.0
- uses: taiga-family/ci/actions/run/merge@v1.80.0
with:
token: ${{ secrets.TAIGA_FAMILY_BOT_PAT }}

Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/auto-author-assign.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ jobs:
runs-on: ubuntu-latest
steps:
- uses: actions/[email protected]
- uses: taiga-family/ci/actions/setup/variables@v1.79.0
- uses: taiga-family/ci/actions/setup/variables@v1.80.0
- uses: toshimaru/[email protected]
if: env.IS_OWNER_MODE == 'true'
with:
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/auto-label.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,8 +7,8 @@ jobs:
runs-on: ubuntu-latest
steps:
- uses: actions/[email protected]
- uses: taiga-family/ci/actions/setup/variables@v1.79.0
- uses: taiga-family/ci/actions/auto/label-when-approved@v1.79.0
- uses: taiga-family/ci/actions/setup/variables@v1.80.0
- uses: taiga-family/ci/actions/auto/label-when-approved@v1.80.0
with:
approvals: 1
token: ${{ secrets.GITHUB_TOKEN }}
11 changes: 0 additions & 11 deletions .github/workflows/auto-remove-label.yml

This file was deleted.

4 changes: 2 additions & 2 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,8 +10,8 @@ jobs:
name: Build
runs-on: ubuntu-latest
steps:
- uses: taiga-family/ci/actions/setup/checkout@v1.79.0
- uses: taiga-family/ci/actions/setup/node@v1.79.0
- uses: taiga-family/ci/actions/setup/checkout@v1.80.0
- uses: taiga-family/ci/actions/setup/node@v1.80.0
- run: |
npm run prettier -- --check
npm run lint
Expand Down
8 changes: 4 additions & 4 deletions .github/workflows/deploy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,11 +8,11 @@ jobs:
deploy:
runs-on: ubuntu-latest
steps:
- uses: taiga-family/ci/actions/setup/checkout@v1.79.0
- uses: taiga-family/ci/actions/setup/variables@v1.79.0
- uses: taiga-family/ci/actions/setup/node@v1.79.0
- uses: taiga-family/ci/actions/setup/checkout@v1.80.0
- uses: taiga-family/ci/actions/setup/variables@v1.80.0
- uses: taiga-family/ci/actions/setup/node@v1.80.0
- run: npm run build:demo
- uses: taiga-family/ci/actions/deploy/github-pages@v1.79.0
- uses: taiga-family/ci/actions/deploy/github-pages@v1.80.0
with:
token: ${{ secrets.TAIGA_FAMILY_BOT_PAT }}
folder: dist/apps/demo
35 changes: 21 additions & 14 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,31 +7,38 @@ on:
- libs/ng-morph/**
workflow_dispatch:
inputs:
forcePush:
type: boolean
required: false
description: --force-publish package
mode:
type: choice
description: force package to be versioned (depend --force-publish)
required: false
default: minor
description: Bump version as requested
required: true
options:
- patch
- minor
- patch
- major
- prepatch

jobs:
release:
runs-on: ubuntu-latest
if: "!contains(github.event.head_commit.message, 'chore(release)')"
steps:
- uses: taiga-family/ci/actions/setup/checkout@v1.79.0
- uses: taiga-family/ci/actions/run/release-it@v1.79.0
- uses: taiga-family/ci/actions/setup/checkout@v1.80.0
- uses: taiga-family/ci/actions/run/release-it@v1.80.0
with:
ref: ${{ github.ref }}
githubToken: ${{ secrets.TAIGA_FAMILY_BOT_PAT }}
npmToken: ${{ secrets.NPM_TOKEN }}
forcePush: ${{ github.event.inputs.forcePush }}
mode: ${{ github.event.inputs.mode }}
npmToken: ${{ secrets.NPM_TOKEN }}
githubToken: ${{ secrets.TAIGA_FAMILY_BOT_PAT }}

- id: info
run: |
echo "version=v$(node -p "require('./package.json').version")" >> $GITHUB_OUTPUT
echo "name=$(node -p "require('./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 }}
1 change: 1 addition & 0 deletions .release-it.js
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
module.exports = require('@taiga-ui/release-it-config');
32 changes: 0 additions & 32 deletions .release-it.json

This file was deleted.

149 changes: 0 additions & 149 deletions libs/ng-morph/README.md

This file was deleted.

Loading

0 comments on commit 4d7de6d

Please sign in to comment.