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 2 months ago
JSON representation
Ready-made pipelines for continuous integration of taiga projects
- Host: GitHub
- URL: https://github.com/taiga-family/ci
- Owner: taiga-family
- License: apache-2.0
- Created: 2023-08-03T10:01:26.000Z (about 2 years ago)
- Default Branch: main
- Last Pushed: 2024-12-30T07:10:32.000Z (10 months ago)
- Last Synced: 2025-01-02T08:04:11.135Z (10 months ago)
- Topics: ci, cicd
- Language: JavaScript
- Size: 1.57 MB
- Stars: 2
- Watchers: 3
- Forks: 0
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
- License: LICENSE
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/checkout@v3.6.0
- uses: taiga-family/ci/actions/auto/approve/double@v1.24.0
with:
token1: ${{ secrets.APPROVER1_TOKEN }}
token2: ${{ secrets.APPROVER2_TOKEN }}
```
### Global variables action
```yml
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3.6.0
- uses: taiga-family/ci/actions/setup/variable@v1.24.0
```
### Node.js action
```yml
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3.6.0
- uses: taiga-family/ci/actions/setup/node@v1.24.0
```
#### You can also see what else actions is inside `actions` directory