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
{ | |
"labels": [ | |
{ | |
"name": "good first issue", | |
"color": "5319e7" | |
}, | |
{ | |
"name": "[Pri] BLOCKER", | |
"color": "e84d10" | |
}, |
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
package main | |
import ( | |
"context" | |
"fmt" | |
"os" | |
"github.com/google/go-github/github" | |
"golang.org/x/oauth2" | |
) |
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
118d117 | |
< -ms-transform: rotate(90deg); | |
124d122 | |
< -ms-transform: rotate(180deg); | |
130d127 | |
< -ms-transform: rotate(270deg); | |
136d132 | |
< -ms-transform: scale(-1, 1); | |
142d137 | |
< -ms-transform: scale(1, -1); |
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
#!/bin/bash | |
error() { | |
echo "$1" | |
exit 1 | |
} | |
get_transient_names() { | |
local prefix="_transient_$1*" | |
local transients="$(wp option list --transients --search="$prefix" --field=option_name)" |
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/php | |
<?php | |
define( 'SVN_USERNAME', getenv( 'SVN_USERNAME' ) ); | |
define( 'SVN_PASSWORD', getenv( 'SVN_PASSWORD' ) ); | |
define( 'WORKDIR', sys_get_temp_dir() . '/' . uniqid() ); | |
define( 'WORKDIR_ATOMIC', WORKDIR . '/atomic' ); | |
define( 'WORKDIR_SRC', WORKDIR . '/src' ); | |
const ATOMIC_SVN_URL = 'https://woothemes.svn.beanstalkapp.com/woocommerce-atomic-products'; |
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
<?xml version="1.0"?> | |
<ruleset name="WordPress Coding Standards"> | |
<description>WooCommerce extension PHP_CodeSniffer ruleset.</description> | |
<!-- Exclude paths --> | |
<exclude-pattern>tests/</exclude-pattern> | |
<exclude-pattern>woo-includes/woo-functions.php</exclude-pattern> | |
<exclude-pattern>woo-includes/class-wc-dependencies.php</exclude-pattern> | |
<exclude-pattern>*/node_modules/*</exclude-pattern> | |
<exclude-pattern>*/vendor/*</exclude-pattern> |
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 php | |
<?php | |
function err(string $message) { | |
print( $message ); | |
exit(1); | |
} | |
function usage() { | |
global $argv; |
OlderNewer