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 | |
usage() | |
{ | |
cat << EOF | |
usage: $0 options | |
This script will tag the commit message with the branch info. e.g. [TENPA-1-branch-name] message. | |
You will need to pass the commit message as argument |
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
My Awesome Sketch | |
First State | |
some event -> Second State | |
Second State |
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
<List itemsPerRow={1}> | |
{selectedTeam!.environments.previews | |
.map(preview => ( | |
<ListItem | |
key={preview.key} | |
className={ShipyardStyles.mb_30} | |
onClick={() => console.log('select env', preview)}> | |
<div className={styles.environmentListItemContent}> | |
<h3 className={styles.environmentListItemHeader}>{preview.title}</h3> | |
<img src="https://cloudbees.github.io/core-sandbox/core/environments/core-sandbox/assets/avatar-x128-5b0a88e9a48110fb6e940d570d5938304fdde7fd4259c0cba2670b7c5535291d.jpg" alt="Johnny Appleseed" className="w-24 h-24 rounded-pill pin-t-20 pin-r-20 absolute"/> |
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
[vcs 2018-11-14T21:09:08.721Z] (cloning from upstream repo https://hg.mozilla.org/mozilla-unified) | |
[vcs 2018-11-14T21:09:09.000Z] (sharing from new pooled repository 8ba995b74e18334ab3707f27e9eb8f4e37ba3d29) | |
[vcs 2018-11-14T21:09:09.516Z] applying clone bundle from https://s3-external-1.amazonaws.com/moz-hg-bundles-us-east-1/mozilla-unified/d3f4d556a89d3e5e72749314a0cf81d942fafc13.packed1.hg |
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
// set the following value to true | |
gsettings set org.gnome.desktop.sound allow-volume-above-100-percent true | |
// get the current value | |
gsettings get org.gnome.desktop.sound allow-volume-above-100-percent |
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
node { | |
stage('Hello') { | |
checkpoint 'Completed Build1' | |
echo 'Hello World' | |
} | |
stage('Hello2') { | |
echo 'Hello World' | |
} | |
stage('Hello3') { |
OlderNewer