Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/taiga-family/ci

Ready-made pipelines for continuous integration of taiga projects
https://github.com/taiga-family/ci

ci cicd

Last synced: about 1 month ago
JSON representation

Ready-made pipelines for continuous integration of taiga projects

Awesome Lists containing this project

README

        

# ci

Ready-made pipelines for continuous integration of taiga projects

---

### Auto approve action

```yml
name: Auto approve
on: pull_request

jobs:
automated-approve-release-pull-request:
runs-on: ubuntu-latest
permissions:
pull-requests: write
if: contains(github.head_ref, 'release/')
steps:
- uses: actions/[email protected]
- uses: taiga-family/ci/actions/auto/approve/[email protected]
with:
token1: ${{ secrets.APPROVER1_TOKEN }}
token2: ${{ secrets.APPROVER2_TOKEN }}
```

### Global variables action

```yml
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/[email protected]
- uses: taiga-family/ci/actions/setup/[email protected]
```

### Node.js action

```yml
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/[email protected]
- uses: taiga-family/ci/actions/setup/[email protected]
```

#### You can also see what else actions is inside `actions` directory