This file contains hidden or 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
<?php | |
namespace Dxw\GovukTheme\Posts; | |
class Article | |
{ | |
public function hasBannerAsFirstBlock(): bool | |
{ | |
$firstBlockName = $this->getFirstBlockName(); | |
$result = true; |
This file contains hidden or 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
#!/usr/bin/env bash | |
# Get all app repos | |
repos=($(govpress repo list | jq '.Repos[]' -r)) | |
# Generate the report file | |
touch report.txt | |
# For each, clone the repo and run whippet deps update | |
for repo in "${repos[@]}"; do | |
repo_name="[email protected]:$repo" | |
echo $repo_name |