Skip to content

Commit 19afbd1

Browse files
authored
Merge branch 'main' into feature/MOOSE-156/consolidade-navigation-block-styles
2 parents c89724e + e828da2 commit 19afbd1

File tree

139 files changed

+2582
-2328
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

139 files changed

+2582
-2328
lines changed

.github/PULL_REQUEST_TEMPLATE.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -9,3 +9,8 @@ Links to relevant issues
99

1010
Screenshots/video:
1111
- [Link to Video](https://example.com)
12+
13+
## Pull request checklist
14+
- [ ] I've added a changelog entry for these changes.
15+
- [ ] I've linked to a relevant Jira issue.
16+
- [ ] I've captured a screenshot or screencast of the changes and linked it above.

.github/lighthouse/lighthouserc.json

Lines changed: 0 additions & 35 deletions
This file was deleted.

.github/workflows/code-quality.yml

Lines changed: 4 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
name: 'Code Quality Checks'
1+
name: 'Code Quality Checks (CQC)'
22

33
on:
44
workflow_dispatch:
@@ -13,32 +13,22 @@ on:
1313

1414
jobs:
1515
coding-standards:
16-
name: 'Coding Standards'
16+
name: 'PHP CodeSniffer (PHPCS)'
1717
uses: ./.github/workflows/phpcs.yml
1818
secrets:
1919
OP_SERVICE_ACCOUNT_TOKEN: ${{ secrets.OP_SERVICE_ACCOUNT_TOKEN }}
2020
OP_VAULT: ${{ secrets.OP_VAULT }}
2121
OP_ITEM: ${{ secrets.OP_ITEM }}
2222

2323
linting:
24-
name: 'Linting'
24+
name: 'Linting (JS, JSON, PCSS)'
2525
uses: ./.github/workflows/linting.yml
2626

2727
phpstan:
28-
name: 'Static Analysis'
28+
name: 'Static Analysis (PHPStan)'
2929
needs: [coding-standards, linting]
3030
uses: ./.github/workflows/static-analysis.yml
3131
secrets:
3232
OP_SERVICE_ACCOUNT_TOKEN: ${{ secrets.OP_SERVICE_ACCOUNT_TOKEN }}
3333
OP_VAULT: ${{ secrets.OP_VAULT }}
3434
OP_ITEM: ${{ secrets.OP_ITEM }}
35-
36-
# Enable this job if you have PHPUnit tests
37-
# slic:
38-
# name: 'PHP Tests'
39-
# needs: [coding-standards, phpstan, linting]
40-
# uses: ./.github/workflows/php-tests.yml
41-
# secrets:
42-
# OP_SERVICE_ACCOUNT_TOKEN: ${{ secrets.OP_SERVICE_ACCOUNT_TOKEN }}
43-
# OP_VAULT: ${{ secrets.OP_VAULT }}
44-
# OP_ITEM: ${{ secrets.OP_ITEM }}

.github/workflows/deploy-dev.yml

Lines changed: 0 additions & 86 deletions
This file was deleted.

.github/workflows/deploy-prod.yml

Lines changed: 0 additions & 89 deletions
This file was deleted.

.github/workflows/deploy-stage.yml

Lines changed: 0 additions & 90 deletions
This file was deleted.

.github/workflows/dokku-dev.yml

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,4 @@
1-
2-
name: Dokku Deploy Dev
1+
name: 'Dokku Deploy: Moose Dev'
32

43
on:
54
workflow_dispatch:
Lines changed: 20 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,20 @@
1+
name: 'Dokku Deploy: GUQ: NEW'
2+
3+
on:
4+
workflow_dispatch:
5+
6+
jobs:
7+
deploy_app:
8+
uses: ./.github/workflows/pipeline-dokku.yml
9+
with:
10+
app_name: guq-new
11+
branch: ${{ github.ref }}
12+
server: d1.moderntribe.qa
13+
is_review_app: false
14+
secrets:
15+
github_pat_token: ${{ secrets.GH_BOT_TOKEN }}
16+
ssh_private_key: ${{ secrets.DOKKU_DEPLOY_KEY }}
17+
slack_webhook: ${{ secrets.SLACK_WEBHOOK }}
18+
OP_SERVICE_ACCOUNT_TOKEN: ${{ secrets.OP_SERVICE_ACCOUNT_TOKEN }}
19+
OP_VAULT: ${{ secrets.OP_VAULT }}
20+
OP_ITEM: ${{ secrets.OP_ITEM }}

0 commit comments

Comments
 (0)