Skip to content

Commit ce8a19a

Browse files
committed
Comment out workflows
1 parent 1f4aa7d commit ce8a19a

File tree

2 files changed

+102
-102
lines changed

2 files changed

+102
-102
lines changed

.github/workflows/algolia.yaml

Lines changed: 22 additions & 22 deletions
Original file line numberDiff line numberDiff line change
@@ -1,25 +1,25 @@
11
# generate a workflow that triggers in push to main
2-
name: Algolia Re-crawler
2+
# name: Algolia Re-crawler
33

4-
on:
5-
push:
6-
branches:
7-
- main
8-
workflow_dispatch:
4+
# on:
5+
# push:
6+
# branches:
7+
# - main
8+
# workflow_dispatch:
99

10-
jobs:
11-
algolia_recrawl:
12-
runs-on: ubuntu-latest
13-
steps:
14-
- name: Sleep for 120s
15-
run: sleep 120
16-
- name: Algolia crawler creation and crawl
17-
uses: algolia/algoliasearch-crawler-github-actions@v1.0.10
18-
id: algolia_crawler
19-
with: # mandatory parameters
20-
crawler-user-id: ${{ secrets.CRAWLER_USER_ID }}
21-
crawler-api-key: ${{ secrets.CRAWLER_API_KEY }}
22-
algolia-app-id: ${{ secrets.ALGOLIA_APP_ID }}
23-
algolia-api-key: ${{ secrets.ALGOLIA_API_KEY }}
24-
crawler-name: coderabbit
25-
site-url: "https://docs.coderabbit.ai"
10+
# jobs:
11+
# algolia_recrawl:
12+
# runs-on: ubuntu-latest
13+
# steps:
14+
# - name: Sleep for 120s
15+
# run: sleep 120
16+
# - name: Algolia crawler creation and crawl
17+
# uses: algolia/algoliasearch-crawler-github-actions@v1.0.10
18+
# id: algolia_crawler
19+
# with: # mandatory parameters
20+
# crawler-user-id: ${{ secrets.CRAWLER_USER_ID }}
21+
# crawler-api-key: ${{ secrets.CRAWLER_API_KEY }}
22+
# algolia-app-id: ${{ secrets.ALGOLIA_APP_ID }}
23+
# algolia-api-key: ${{ secrets.ALGOLIA_API_KEY }}
24+
# crawler-name: coderabbit
25+
# site-url: "https://docs.coderabbit.ai"

.github/workflows/node.js.yaml

Lines changed: 80 additions & 80 deletions
Original file line numberDiff line numberDiff line change
@@ -1,95 +1,95 @@
1-
name: Node.js CI
1+
# name: Node.js CI
22

3-
on:
4-
merge_group:
5-
branches:
6-
- main
7-
pull_request:
8-
branches:
9-
- main
10-
push:
11-
branches:
12-
- main
3+
# on:
4+
# merge_group:
5+
# branches:
6+
# - main
7+
# pull_request:
8+
# branches:
9+
# - main
10+
# push:
11+
# branches:
12+
# - main
1313

14-
jobs:
15-
test:
16-
runs-on: ubuntu-latest
17-
env:
18-
INKEEP_API_KEY: ${{ secrets.INKEEP_API_KEY }}
14+
# jobs:
15+
# test:
16+
# runs-on: ubuntu-latest
17+
# env:
18+
# INKEEP_API_KEY: ${{ secrets.INKEEP_API_KEY }}
1919

20-
steps:
21-
- uses: actions/checkout@v4
22-
- uses: pnpm/action-setup@v4
23-
with:
24-
version: latest
25-
- uses: actions/setup-node@v4
26-
with:
27-
node-version: 22
28-
cache: pnpm
29-
- run: pnpm install --frozen-lockfile --strict-peer-dependencies
30-
- run: pnpm run build
31-
env:
32-
INKEEP_API_KEY: ${{ secrets.INKEEP_API_KEY }}
33-
- run: pnpm run lint
20+
# steps:
21+
# - uses: actions/checkout@v4
22+
# - uses: pnpm/action-setup@v4
23+
# with:
24+
# version: latest
25+
# - uses: actions/setup-node@v4
26+
# with:
27+
# node-version: 22
28+
# cache: pnpm
29+
# - run: pnpm install --frozen-lockfile --strict-peer-dependencies
30+
# - run: pnpm run build
31+
# env:
32+
# INKEEP_API_KEY: ${{ secrets.INKEEP_API_KEY }}
33+
# - run: pnpm run lint
3434

35-
fix:
36-
runs-on: ubuntu-latest
35+
# fix:
36+
# runs-on: ubuntu-latest
3737

38-
permissions:
39-
contents: write
38+
# permissions:
39+
# contents: write
4040

41-
needs:
42-
- test
41+
# needs:
42+
# - test
4343

44-
if: failure() && github.event_name != 'merge_group' && github.actor != 'github-actions[bot]' && github.actor != 'nektos/act'
44+
# if: failure() && github.event_name != 'merge_group' && github.actor != 'github-actions[bot]' && github.actor != 'nektos/act'
4545

46-
steps:
47-
- uses: actions/checkout@v4
48-
with:
49-
ref: ${{ github.ref }}
50-
- uses: pnpm/action-setup@v4
51-
with:
52-
version: latest
53-
- uses: actions/setup-node@v4
54-
with:
55-
cache: pnpm
56-
node-version: 22
46+
# steps:
47+
# - uses: actions/checkout@v4
48+
# with:
49+
# ref: ${{ github.ref }}
50+
# - uses: pnpm/action-setup@v4
51+
# with:
52+
# version: latest
53+
# - uses: actions/setup-node@v4
54+
# with:
55+
# cache: pnpm
56+
# node-version: 22
5757

58-
- run: |
59-
pnpm install --fix-lockfile --no-frozen-lockfile
60-
git add .
61-
- id: commit-lockfile
62-
uses: qoomon/actions--create-commit@v1
63-
with:
64-
message: |
65-
📌 pnpm install --fix-lockfile
58+
# - run: |
59+
# pnpm install --fix-lockfile --no-frozen-lockfile
60+
# git add .
61+
# - id: commit-lockfile
62+
# uses: qoomon/actions--create-commit@v1
63+
# with:
64+
# message: |
65+
# 📌 pnpm install --fix-lockfile
6666

67-
[dependabot skip]
68-
skip-empty: true
67+
# [dependabot skip]
68+
# skip-empty: true
6969

70-
- run: |
71-
pnpm run format
72-
git add .
73-
- id: commit-format
74-
uses: qoomon/actions--create-commit@v1
75-
with:
76-
message: |
77-
🎨 pnpm run format
70+
# - run: |
71+
# pnpm run format
72+
# git add .
73+
# - id: commit-format
74+
# uses: qoomon/actions--create-commit@v1
75+
# with:
76+
# message: |
77+
# 🎨 pnpm run format
7878

79-
[dependabot skip]
80-
skip-empty: true
79+
# [dependabot skip]
80+
# skip-empty: true
8181

82-
- run: |
83-
pnpm run lint:fix
84-
git add .
85-
- id: commit-lint
86-
uses: qoomon/actions--create-commit@v1
87-
with:
88-
message: |
89-
🚨 pnpm run lint:fix
82+
# - run: |
83+
# pnpm run lint:fix
84+
# git add .
85+
# - id: commit-lint
86+
# uses: qoomon/actions--create-commit@v1
87+
# with:
88+
# message: |
89+
# 🚨 pnpm run lint:fix
9090

91-
[dependabot skip]
92-
skip-empty: true
91+
# [dependabot skip]
92+
# skip-empty: true
9393

94-
- if: steps.commit-lockfile.outputs.commit || steps.commit-format.outputs.commit || steps.commit-lint.outputs.commit
95-
run: git push
94+
# - if: steps.commit-lockfile.outputs.commit || steps.commit-format.outputs.commit || steps.commit-lint.outputs.commit
95+
# run: git push

0 commit comments

Comments
 (0)