mirror of
https://github.com/WordPress/five-for-the-future.git
synced 2025-04-25 04:13:44 +03:00
Compare commits
3 commits
48a32ac3f9
...
b28d09faa1
Author | SHA1 | Date | |
---|---|---|---|
![]() |
b28d09faa1 | ||
![]() |
7dc7e421ae | ||
![]() |
15a05df622 |
5
.github/workflows/build.yml
vendored
5
.github/workflows/build.yml
vendored
|
@ -17,6 +17,11 @@ jobs:
|
|||
- name: Checkout repository
|
||||
uses: actions/checkout@c85c95e3d7251135ab7dc9ce3241c5835cc595a9 # v3.5.3
|
||||
|
||||
- name: Install Subversion
|
||||
run: |
|
||||
sudo apt-get update
|
||||
sudo apt-get install -y subversion
|
||||
|
||||
# Required for old theme build step.
|
||||
- name: Checkout wporg CSS
|
||||
run: |
|
||||
|
|
10
.github/workflows/ci.yml
vendored
10
.github/workflows/ci.yml
vendored
|
@ -17,6 +17,11 @@ jobs:
|
|||
with:
|
||||
fetch-depth: 0
|
||||
|
||||
- name: Install Subversion
|
||||
run: |
|
||||
sudo apt-get update
|
||||
sudo apt-get install -y subversion
|
||||
|
||||
- name: Get Composer cache directory
|
||||
id: composer-cache
|
||||
run: echo "::set-output name=dir::$(composer config cache-files-dir)"
|
||||
|
@ -73,6 +78,11 @@ jobs:
|
|||
steps:
|
||||
- uses: actions/checkout@v2
|
||||
|
||||
- name: Install Subversion
|
||||
run: |
|
||||
sudo apt-get update
|
||||
sudo apt-get install -y subversion
|
||||
|
||||
- name: Get Composer cache directory
|
||||
id: composer-cache
|
||||
run: echo "::set-output name=dir::$(composer config cache-files-dir)"
|
||||
|
|
|
@ -509,11 +509,13 @@ function get_association_classes( $team ) {
|
|||
$classes = array( 'badge-photo-contributor', 'dashicons-camera' );
|
||||
break;
|
||||
|
||||
case 'core-performance-team':
|
||||
case 'performance-team':
|
||||
// Logo defined as SVG in CSS.
|
||||
$classes = array( 'badge-performance-team' );
|
||||
break;
|
||||
|
||||
case 'core-performance-contributor':
|
||||
case 'performance-contributor':
|
||||
// Logo defined as SVG in CSS.
|
||||
$classes = array( 'badge-performance-contributor' );
|
||||
|
|
Loading…
Reference in a new issue