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

Switch badge to GitHub Actions #139

Open
wants to merge 3 commits into
base: main
Choose a base branch
from
Open
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: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
Vault Rails [![Build Status](https://circleci.com/gh/hashicorp/vault-rails.svg?style=shield)](https://circleci.com/gh/hashicorp/vault-rails)
Vault Rails [![Build Status](https://github.com/hashicorp/vault-rails/actions/workflows/run-tests.yml/badge.svg?branch=main)](https://github.com/hashicorp/vault-rails/actions/workflows/run-tests.yml)
===========

Vault is the official Rails plugin for interacting with [Vault](https://vaultproject.io) by HashiCorp.

**If you're viewing this README from GitHub on the `master` branch, know that it may contain unreleased features or
**If you're viewing this README from GitHub on the `main` branch, know that it may contain unreleased features or
different APIs than the most recently released version. Please see the Git tag that corresponds to your version of the
Vault Rails plugin for the proper documentation.**

Expand Down
2 changes: 1 addition & 1 deletion lib/vault/encrypted_model.rb
Original file line number Diff line number Diff line change
Expand Up @@ -212,7 +212,7 @@ def parse_transit_attributes(attribute, options)
after_initialize :__vault_initialize_attributes!

# After we save the record, persist all the values to Vault and reload
# them attributes from Vault to ensure we have the proper attributes set.
# the attributes from Vault to ensure we have the proper attributes set.
# The reason we use `after_save` here is because a `before_save` could
# run too early in the callback process. If a user is changing Vault
# attributes in a callback, it is possible that our callback will run
Expand Down