Skip to content

Run awesomebot daily #164

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 2 commits into from
Jul 19, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 3 additions & 1 deletion .github/workflows/awesomebot.yml
Original file line number Diff line number Diff line change
@@ -1,6 +1,8 @@
name: Check links in README.md

on:
# Run daily
schedule: [{cron: "0 1 * * *"}]
push:
branches: [ '*' ]
pull_request:
Expand All @@ -15,4 +17,4 @@ jobs:
- uses: actions/checkout@v4
- uses: docker://dkhamsing/awesome_bot:latest
with:
args: /github/workspace/README.md README.md --allow-timeout --request-delay 1 --allow 502,503,504,509,521 --allow-ssl --allow-redirect --allow-dupe -w www.terraform.io,signup.hangops.com,kitchen.ci --white-list https://vimeo.com,kubernetes.io,kitchen.ci,debuggex.com,smile.amazon.com
args: /github/workspace/README.md README.md --allow-timeout --request-delay 1 --allow 502,503,504,509,521 --allow-ssl --allow-redirect --allow-dupe -w www.terraform.io,signup.hangops.com,kitchen.ci --white-list https://vimeo.com,kubernetes.io,kitchen.ci,debuggex.com,smile.amazon.com
3 changes: 1 addition & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
![Awesomebot link checking](https://github.com/unixorn/sysadmin-reading-list/actions/workflows/awesomebot.yml/badge.svg)
[![GitHub last commit (branch)](https://img.shields.io/github/last-commit/unixorn/sysadmin-reading-list/main.svg)](https://github.com/unixorn/sysadmin-reading-list)

Copyright 2017-2023 Joe Block <jpb@unixorn.net>. See [LICENSE.md](https://github.com/unixorn/sysadmin-reading-list/blob/main/LICENSE.md) for details.
Copyright 2017-2024 Joe Block <jpb@unixorn.net>. See [LICENSE.md](https://github.com/unixorn/sysadmin-reading-list/blob/main/LICENSE.md) for details.

A reading list for the larval stage sysadmin/SRE. This list is focused on the UNIX family of OSes, but PRs about other OSes are welcome.

Expand Down Expand Up @@ -131,7 +131,6 @@ That said, it is on every system, so every *NIX sysadmin needs to know `bash`.
Here are some useful resources to help you step up your shell scripting game:

- [The Art of the Command Line](https://github.com/jlevy/the-art-of-command-line) - A good set of notes and tips on using the command-line that is useful when working on Linux/Unix.
- [Advancing in the Bash Shell](http://samrowe.com/wordpress/advancing-in-the-bash-shell/) - Sam Rowe's `bash` as CLI tutorial.
- [Bash Guide For Beginners](https://tldp.org/LDP/Bash-Beginners-Guide/html/) - A practical guide which, while not always being too serious, tries to give real-life instead of theoretical examples.
- [Bash Guide](https://mywiki.wooledge.org/BashGuide) - Gives examples of good practice when writing `bash` scripts. It is targeted at beginning users with no advanced knowledge.
- [Bash Pitfalls](http://mywiki.wooledge.org/BashPitfalls) - Greg Wooledge has a great list of unpleasant surprises in `bash`.
Expand Down