Skip to content

Instantly share code, notes, and snippets.

View stipsan's full-sized avatar

Cody Olsen stipsan

View GitHub Profile
@stipsan
stipsan / create_release_branch.yml
Created August 22, 2022 17:42 — forked from riggaroo/create_release_branch.yml
Github Action workflow for creating release branch, updating versionName and versionCode, copying strings.xml to another repo, submitting PRs as per GitFlow.
name: Create Release Branch
on:
workflow_dispatch:
inputs:
versionName:
description: 'Name of version (ie 5.5.0)'
required: true
versionCode:
description: 'Version number (50500)'
required: true
@stipsan
stipsan / github-actions-notes.md
Created August 22, 2022 17:41 — forked from br3ndonland/github-actions-notes.md
Getting the Gist of GitHub Actions
@stipsan
stipsan / README.md
Last active July 31, 2018 11:07 — forked from paulirish/server-timing-demo.js
Demo of server timing values. visualized in chrome devtools.
let AnimationWrapper = React.createClass({
render() {
console.log(this.props.childClassName + ' render');
return this.props.children;
},
componentWillAppear (callback) {
console.log(this.props.childClassName + ' willappear');
callback();