-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
10 changed files
with
167 additions
and
9 deletions.
There are no files selected for viewing
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
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
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
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,66 @@ | ||
- name: bug | ||
description: Something isn't working | ||
color: D73A4A | ||
- name: community contribution | ||
description: This issue was closed by a PR from the community | ||
color: 7D00DA | ||
- name: contributions welcome | ||
description: Architecture is clear and community can help | ||
color: F488C1 | ||
- name: dev-infra | ||
description: dev-infra | ||
color: 3F2963 | ||
- name: documentation | ||
description: Improvements or additions to documentation | ||
color: 0075CA | ||
- name: feature | ||
description: New feature or request | ||
color: 2C4BE1 | ||
- name: major | ||
description: Renovate | ||
color: EDEDED | ||
- name: minor | ||
description: Renovate | ||
color: EDEDED | ||
- name: patch | ||
description: TRenovate | ||
color: EDEDED | ||
- name: P1 | ||
description: This issue has high priority | ||
color: B11D1E | ||
- name: P2 | ||
description: This issue has medium priority | ||
color: FBCA04 | ||
- name: P3 | ||
description: This issue has low priority | ||
color: 0E8A16 | ||
- name: ready to merge | ||
description: ready | ||
color: 0E8A16 | ||
- name: S1 | ||
description: This issue has high severity | ||
color: F9D0C4 | ||
- name: S2 | ||
description: This issue has medium severity | ||
color: FEFFA4 | ||
- name: S3 | ||
description: This issue has low severity | ||
color: BAF8AE | ||
- name: "state: need triage" | ||
description: state need triage | ||
color: C5DEF5 | ||
- name: "state: postponed" | ||
description: state need triage | ||
color: C5DEF5 | ||
- name: wontfix | ||
description: This will not be worked on | ||
color: FFFFFF | ||
- name: v2 | ||
description: v2 | ||
color: D4C5F9 | ||
- name: v3 | ||
description: v3 | ||
color: FBCA04 | ||
- name: v4 | ||
description: v4 | ||
color: C351D5 |
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,22 @@ | ||
name: Auto sync labels | ||
on: | ||
workflow_dispatch: | ||
schedule: | ||
- cron: "40 7 * * 6" | ||
push: | ||
branches: [main] | ||
paths: | ||
- ./.github/labels.yml | ||
|
||
jobs: | ||
build: | ||
runs-on: ubuntu-latest | ||
steps: | ||
- uses: actions/[email protected] | ||
- uses: micnncim/[email protected] | ||
with: | ||
manifest: ./.github/labels.yml | ||
token: ${{ secrets.TAIGA_FAMILY_BOT_PAT }} | ||
repository: | | ||
taiga-family/.github | ||
taiga-family/linters |
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,24 @@ | ||
name: ⚙️ Lint | ||
on: | ||
pull_request: | ||
push: | ||
branches: | ||
- main | ||
|
||
jobs: | ||
lint: | ||
runs-on: ubuntu-latest | ||
steps: | ||
- uses: actions/[email protected] | ||
- name: Setup global variables | ||
uses: taiga-family/ci/actions/[email protected] | ||
- name: Setup Node.js and Cache | ||
uses: taiga-family/ci/actions/[email protected] | ||
|
||
- name: Lint check | ||
run: | | ||
npm run prettier -- --check | ||
concurrency: | ||
group: lint-${{ github.head_ref }} | ||
cancel-in-progress: true |
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1,2 @@ | ||
.idea | ||
node_modules |
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,2 +1,3 @@ | ||
# .github | ||
|
||
This is Taiga-family's organization profile page |
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,13 @@ | ||
{ | ||
"name": "taiga-family-github", | ||
"private": true, | ||
"description": "This is Taiga-family's organization profile page", | ||
"scripts": { | ||
"prettier": "prettier '**/*.{svg,yml,js,ts,html,md,less,json}'", | ||
"format": "npm run prettier -- --write" | ||
}, | ||
"devDependencies": { | ||
"prettier": "3.0.3" | ||
}, | ||
"license": "Apache-2.0" | ||
} |