This diagram shows the complete automated workflow for handling GitHub issues and PRs, including our intelligent retry strategies and worktree-based CI fixing.
flowchart TD
A[GitHub Agent Scan] --> B{Found Items?}Once in a while, you may need to cleanup resources (containers, volumes, images, networks) ...
// see: https://github.com/chadoe/docker-cleanup-volumes
$ docker volume rm $(docker volume ls -qf dangling=true)
$ docker volume ls -qf dangling=true | xargs -r docker volume rm
I hereby claim:
To claim this, I am signing this object:
Might be good to establish some best practices for common blockchain / smart contract scenarios.
bit clone , bit add @, bit commit -m "Sending to , bit push. Important to have lots of autocomplete and help - see Keybase for a good CLI example.I hereby claim:
To claim this, I am signing this object:
| { | |
| "AWSTemplateFormatVersion": "2010-09-09", | |
| "Description": "*** lambdas", | |
| "Parameters": { | |
| "aaLambdaRoleArn": { | |
| "Type": "String", | |
| "Default": "***" | |
| } | |
| }, | |
| "Resources": { |
| import * as actions from 'redux/modules/content/page'; | |
| import {page} from 'redux/modules/content'; | |
| import {load as getPage} from 'redux/modules/content/page'; | |
| @connect( | |
| state => ({ | |
| page: state.content.page.data, | |
| error: state.content.page.error, | |
| loading: state.content.page.loading |
| import superagent from 'superagent'; | |
| export default function loadInfo() { | |
| return new Promise((resolve) => { | |
| superagent.get(config.remoteApiBase + '/info').then( (res) => { | |
| resolve(res.body); | |
| }, (err) => { | |
| reject(err); | |
| }); |
| ### Keybase proof | |
| I hereby claim: | |
| * I am marclar on github. | |
| * I am marclar (https://keybase.io/marclar) on keybase. | |
| * I have a public key whose fingerprint is 544C 62DF 992B 7384 65ED D227 C62E 5BEB A128 AC5A | |
| To claim this, I am signing this object: |
| var myApp = angular.module('myApp').config(function($httpProvider) { | |
| $httpProvider.defaults.headers.post['X-CSRFToken'] = $('input[name=csrfmiddlewaretoken]').val(); | |
| }); |