Skip to content

Commit

Permalink
Merge pull request #510 from stepchowfun/coc-ref
Browse files Browse the repository at this point in the history
Add a Tagref reference to the code of conduct file
  • Loading branch information
stepchowfun committed May 13, 2024
2 parents 6ed74e3 + 54d53df commit fc87483
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 3 deletions.
9 changes: 7 additions & 2 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -77,8 +77,13 @@ jobs:
# Make Bash log commands and not silently ignore errors.
set -euxo pipefail
# Install the appropriate version of Rust.
rustup toolchain install 1.78.0 # [ref:rust_1.78.0]
# Install the appropriate version of Rust. The `--no-self-update` is necessary to make this
# command work reliably on Windows. Without that flag, the command fails occasionally. See
#
# https://github.com/rust-lang/rustup/issues/2415#issuecomment-658752121
#
# for more information.
rustup toolchain install 1.78.0 --no-self-update # [ref:rust_1.78.0]
rustup default 1.78.0 # [ref:rust_1.78.0]
# Add the targets.
Expand Down
2 changes: 1 addition & 1 deletion CONTRIBUTING.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# Contributing

Thank you for your interest in contributing! You can contribute by filing [issues](https://github.com/stepchowfun/toast/issues) and submitting [pull requests](https://github.com/stepchowfun/toast/pulls). Please observe our [code of conduct](https://github.com/stepchowfun/toast/blob/main/CODE_OF_CONDUCT.md).
Thank you for your interest in contributing! You can contribute by filing [issues](https://github.com/stepchowfun/toast/issues) and submitting [pull requests](https://github.com/stepchowfun/toast/pulls). Please observe our [code of conduct](https://github.com/stepchowfun/toast/blob/main/CODE_OF_CONDUCT.md)<!-- [file:CODE_OF_CONDUCT.md] -->.

If you submit a pull request, please ensure your change passes the [GitHub Actions](https://github.com/stepchowfun/toast/actions) CI checks. This will be apparent from the required status check(s) in the pull request.

Expand Down

0 comments on commit fc87483

Please sign in to comment.