Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
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
- Host: GitHub
- URL: https://github.com/taiga-family/ci
- Owner: taiga-family
- License: apache-2.0
- Created: 2023-08-03T10:01:26.000Z (over 1 year ago)
- Default Branch: main
- Last Pushed: 2024-12-30T07:10:32.000Z (about 1 month ago)
- Last Synced: 2025-01-02T08:04:11.135Z (about 1 month 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_requestjobs:
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