Skip to content
This repository was archived by the owner on Dec 16, 2024. It is now read-only.

Commit 011df67

Browse files
committed
Disable dependabot
1 parent e9b739a commit 011df67

File tree

3 files changed

+11
-32
lines changed

3 files changed

+11
-32
lines changed

.github/dependabot.yml

+2-21
Original file line numberDiff line numberDiff line change
@@ -2,33 +2,14 @@ version: 2
22
updates:
33
# Fetch and update latest `npm` packages
44
- package-ecosystem: npm
5+
open-pull-requests-limit: 0
56
directory: "/"
67
target-branch: dev
7-
schedule:
8-
interval: daily
9-
time: "00:00"
10-
open-pull-requests-limit: 10
11-
reviewers:
12-
- troydota
13-
assignees:
14-
- troydota
15-
commit-message:
16-
prefix: fix
17-
prefix-development: chore
18-
include: scope
198
# Fetch and update latest `github-actions` pkgs
209
- package-ecosystem: github-actions
2110
directory: "/"
2211
target-branch: dev
2312
schedule:
2413
interval: daily
2514
time: "00:00"
26-
open-pull-requests-limit: 10
27-
reviewers:
28-
- troydota
29-
assignees:
30-
- troydota
31-
commit-message:
32-
prefix: fix
33-
prefix-development: chore
34-
include: scope
15+
open-pull-requests-limit: 0

.github/workflows/ci.yaml

+9-9
Original file line numberDiff line numberDiff line change
@@ -13,21 +13,21 @@ on:
1313
- labeled
1414
workflow_dispatch:
1515
inputs:
16-
deploy:
17-
description: "Which environment to deploy to"
18-
required: true
19-
default: "none"
20-
type: choice
21-
options:
22-
- prod
23-
- test
16+
deploy:
17+
description: "Which environment to deploy to"
18+
required: true
19+
default: "none"
20+
type: choice
21+
options:
22+
- prod
23+
- stage
2424

2525
concurrency:
2626
group: ${{ github.workflow }}-${{ github.ref }}
2727
cancel-in-progress: true
2828

2929
env:
30-
DEPLOY: ${{ (inputs.deploy != 'none' && inputs.deploy) || ((github.event_name == 'workflow_dispatch' && github.event.inputs.deploy == 'prod') || (github.event_name == 'push' && github.ref_type == 'branch' && github.ref_name == 'master') && 'prod') || ((github.event_name == 'workflow_dispatch' && github.event.inputs.deploy == 'stage') || (github.event_name == 'push' && github.ref_type == 'branch' && github.ref_name == 'dev') || (github.event_name == 'pull_request' && contains(github.event.pull_request.labels.*.name, 'staged')) && 'test') || 'none' }}
30+
DEPLOY: ${{ (inputs.deploy != 'none' && inputs.deploy) || ((github.event_name == 'workflow_dispatch' && github.event.inputs.deploy == 'prod') || (github.event_name == 'push' && github.ref_type == 'branch' && github.ref_name == 'master') && 'prod') || ((github.event_name == 'workflow_dispatch' && github.event.inputs.deploy == 'stage') || (github.event_name == 'push' && github.ref_type == 'branch' && github.ref_name == 'dev' && 'stage') || (github.event_name == 'pull_request' && contains(github.event.pull_request.labels.*.name, 'staged')) && 'stage') || 'none' }}
3131

3232
jobs:
3333
ci:

.github/workflows/crowdin-download.yaml

-2
Original file line numberDiff line numberDiff line change
@@ -2,8 +2,6 @@ name: Crowdin Download Translations
22

33
on:
44
workflow_dispatch:
5-
schedule:
6-
- cron: "0 */6 * * *"
75

86
jobs:
97
download:

0 commit comments

Comments
 (0)