Skip to content
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

Add CI for wikize refs #1937

Open
wants to merge 8 commits into
base: main
Choose a base branch
from
Open
Changes from 1 commit
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
Prev Previous commit
Next Next commit
fix typo
  • Loading branch information
markcmiller86 committed Dec 18, 2023
commit c5453197a3a8c3f4f3e7eb786038fb70acdb66c7
12 changes: 6 additions & 6 deletions .github/workflows/wikize-refs-ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -56,15 +56,15 @@ jobs:
# list of files changed in this PR
#
# By default, any shell command executed in a workflow that returns non-zero
# exit status will exit the workflow. To prevent that, we uset set +e. Another
# exit status will exit the workflow. To prevent that, we use set +e. Another
# option is to use `continue-on-error: true` in the step's yaml configuration.
# We use set -x to have the shell's work traced to the workkflow log. That makes
# it somewhat noisey and maybe hard to see *real* failures when they happen.
# But, it also makes debugging problems when/if they happen easier.
# We also use set -x to have the shell's work traced to the workkflow log. That
# makes it somewhat noisey and maybe hard to see *real* failures when they
# happen. But, it also makes debugging problems when/if they happen easier.
#
# We loop over all files using `wikize_refs.py` in --up-to-date mode (-u),
# skipping creation of a backup (-s) and setting most errors to warning (-w)
# so it does nothing other than to confirm (or not) that the file would not
# be changed `wikize_refs.py.`. If it will be changed, we echo a message about
# it and set the final exstat status to non-zero.
# be changed by `wikize_refs.py.`. If it will be changed, we echo a message
# about it and set the final exstat status to non-zero.
#