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
| name: Markdownlint Action | |
| on: | |
| push: | |
| paths: | |
| - '**/*.md' | |
| - '.markdownlintignore' | |
| - '.markdownlint.json' | |
| pull_request: | |
| paths: | |
| - '**/*.md' |
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 perl | |
| use warnings; | |
| use strict; | |
| my $file = '.gitignore'; | |
| if (-e $file and -f _ and -w _) { | |
| open my $FOUT, '>>', $file or die "Unable to open file: $file - $!"; | |
| print $FOUT "$ARGV[0]\n"; |
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 | |
| # REF: https://jonasbn.github.io/til/git/delete_local_and_remote_branch.html | |
| echo "Deleting tag $1 locally" | |
| git tag -d $1 | |
| echo "Deleting tag $1 remotely" |
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/zsh | |
| # REF: https://jonasbn.github.io/til/git/delete_local_and_remote_branch.html | |
| echo "Deleting branch $1 locally" | |
| git branch -d $1 | |
| echo "Deleting branch $1 remotely" |
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
| #!perl | |
| use warnings; | |
| use strict; | |
| use Data::Dumper; | |
| use Getopt::Long; | |
| my $reverse; | |
| GetOptions ('reverse' => \$reverse) # flag |
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
| CODE_OF_CONDUCT.md |
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
| # Basic dependabot.yml file | |
| # REF: https://docs.github.com/en/code-security/supply-chain-security/keeping-your-actions-up-to-date-with-dependabot | |
| version: 2 | |
| updates: | |
| # Enable version updates for Docker | |
| - package-ecosystem: "docker" | |
| # Look for a `Dockerfile` in the `root` directory | |
| directory: "/" | |
| # Check for updates once a week |
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
| root = true | |
| [*] | |
| indent_style = space | |
| indent_size = 4 | |
| charset = utf-8 | |
| trim_trailing_whitespace = false | |
| insert_final_newline = true |
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
| .git |
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
| { | |
| ".editorconfig": true, | |
| ".markdownlint.json": true, | |
| ".spellcheck.yml": true, | |
| ".wordlist.txt": true, | |
| ".yakignore": true, | |
| ".yaksums.json": true, | |
| "auto_assign.yml": true, | |
| "CHANGELOG.md": true, | |
| "CODE_OF_CONDUCT.md": "https://www.contributor-covenant.org/version/2/0/code_of_conduct/code_of_conduct.md", |
NewerOlder