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
2021-04-16T19:49:58.2829250Z ##[section]Starting: Request a runner to run this job | |
2021-04-16T19:49:58.3336405Z Found online and idle self-hosted runner in current repository that matches the required labels: 'self-hosted , linux , x64' | |
2021-04-16T19:49:58.4060068Z ##[section]Finishing: Request a runner to run this job | |
2021-04-16T19:50:03.4876898Z Current runner version: '2.277.1' | |
2021-04-16T19:50:03.4879705Z Runner name: 'i-03f6a562b9e9aec3e' | |
2021-04-16T19:50:03.4880215Z Runner group name: 'Default' | |
2021-04-16T19:50:03.4881048Z Machine name: 'ip-172-31-6-197' | |
2021-04-16T19:50:03.4883428Z ##[group]GITHUB_TOKEN Permissions | |
2021-04-16T19:50:03.4884366Z Actions: read | |
2021-04-16T19:50:03.4884791Z Checks: read |
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 | |
# create an annotated tag, the -a indicates that the tag will have a message | |
git tag –a v1.0.0 –m "This is the 1.0 release." | |
# same as above, but opens your text editor for the message | |
git tag –a v1.0.0 |
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 | |
# heredoc with shell expansion | |
cat << EOF | |
The current working directory is: $PWD | |
You are logged in as: $(whoami) | |
EOF | |
# heredoc with shell expansion into a variable | |
myvar=$(cat << EOF |
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
#![forbid(missing_debug_implementations, missing_copy_implementations)] | |
#![deny(rust_2018_idioms)] | |
#![deny(clippy::pedantic)] | |
#![allow(dead_code)] | |
use std::borrow::Cow; | |
use std::fmt::Debug; | |
/// A custom type. Clone is required by `Cow`. `Debug` is required by our example so that we can | |
/// easily print our results. `Copy` is added for completeness since `MyType` has no allocations. |
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
#![forbid(missing_debug_implementations, missing_copy_implementations)] | |
#![deny(rust_2018_idioms)] | |
#![deny(clippy::pedantic)] | |
#![allow(dead_code)] | |
use std::borrow::Cow; | |
struct YouDecide<'a> { | |
s: Cow<'a, str> | |
} |
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
https://www.drupal.org/node/2690335 | |
Most files should be 644 or -rw-r--r-- | |
All directories should be 755 or drwxr-xr-x | |
Files that are intended to be run at the command line should have the executable bit set meaning 755 or -rwxr-xr-x | |
Public Key: chmod 644 | |
Private Key: chmod 600 |
NewerOlder