diff options
author | Daniel García <[email protected]> | 2021-04-27 23:18:32 +0200 |
---|---|---|
committer | Daniel García <[email protected]> | 2021-04-27 23:18:32 +0200 |
commit | 34ea10475d316ccb2ca4cd2cac67b61c4cdfb62a (patch) | |
tree | 46ffe3a1f6da45ec860112f583a1961fd2c537d9 /.github | |
parent | ced7f1771acd9696c7da8adb4bd6044d51abf7c6 (diff) | |
download | vaultwarden-34ea10475d316ccb2ca4cd2cac67b61c4cdfb62a.tar.gz vaultwarden-34ea10475d316ccb2ca4cd2cac67b61c4cdfb62a.zip |
Project renaming
Diffstat (limited to '.github')
-rw-r--r-- | .github/ISSUE_TEMPLATE/bug_report.md | 14 | ||||
-rw-r--r-- | .github/ISSUE_TEMPLATE/config.yml | 4 | ||||
-rw-r--r-- | .github/workflows/build.yml | 8 |
3 files changed, 13 insertions, 13 deletions
diff --git a/.github/ISSUE_TEMPLATE/bug_report.md b/.github/ISSUE_TEMPLATE/bug_report.md index 8c79cf2d..128c5f58 100644 --- a/.github/ISSUE_TEMPLATE/bug_report.md +++ b/.github/ISSUE_TEMPLATE/bug_report.md @@ -1,6 +1,6 @@ --- name: Bug report -about: Use this ONLY for bugs in bitwarden_rs itself. Use the Discourse forum (link below) to request features or get help with usage/configuration. If in doubt, use the forum. +about: Use this ONLY for bugs in vaultwarden itself. Use the Discourse forum (link below) to request features or get help with usage/configuration. If in doubt, use the forum. title: '' labels: '' assignees: '' @@ -8,11 +8,11 @@ assignees: '' --- <!-- # ### - NOTE: Please update to the latest version of bitwarden_rs before reporting an issue! + NOTE: Please update to the latest version of vaultwarden before reporting an issue! This saves you and us a lot of time and troubleshooting. See: - * https://github.com/dani-garcia/bitwarden_rs/issues/1180 - * https://github.com/dani-garcia/bitwarden_rs/wiki/Updating-the-bitwarden-image + * https://github.com/dani-garcia/vaultwarden/issues/1180 + * https://github.com/dani-garcia/vaultwarden/wiki/Updating-the-vaultwarden-image # ### --> @@ -37,9 +37,9 @@ such as passwords, IP addresses, and DNS names as appropriate. --> <!-- The version number, obtained from the logs (at startup) or the admin diagnostics page --> -<!-- This is NOT the version number shown on the web vault, which is versioned separately from bitwarden_rs --> +<!-- This is NOT the version number shown on the web vault, which is versioned separately from vaultwarden --> <!-- Remember to check if your issue exists on the latest version first! --> -* bitwarden_rs version: +* vaultwarden version: <!-- How the server was installed: Docker image, OS package, built from source, etc. --> * Install method: @@ -54,7 +54,7 @@ such as passwords, IP addresses, and DNS names as appropriate. ### Steps to reproduce <!-- Tell us how to reproduce this issue. What parameters did you set (differently from the defaults) -and how did you start bitwarden_rs? --> +and how did you start vaultwarden? --> ### Expected behaviour <!-- Tell us what you expected to happen --> diff --git a/.github/ISSUE_TEMPLATE/config.yml b/.github/ISSUE_TEMPLATE/config.yml index 072be117..7ecd420d 100644 --- a/.github/ISSUE_TEMPLATE/config.yml +++ b/.github/ISSUE_TEMPLATE/config.yml @@ -3,6 +3,6 @@ contact_links: - name: Discourse forum for bitwarden_rs url: https://bitwardenrs.discourse.group/ about: Use this forum to request features or get help with usage/configuration. - - name: GitHub Discussions for bitwarden_rs - url: https://github.com/dani-garcia/bitwarden_rs/discussions + - name: GitHub Discussions for vaultwarden + url: https://github.com/dani-garcia/vaultwarden/discussions about: An alternative to the Discourse forum, if this is easier for you. diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 9b476d3e..bcb16381 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -133,8 +133,8 @@ jobs: - name: Upload artifact uses: actions/upload-artifact@v2 with: - name: bitwarden_rs-${{ matrix.target-triple }}${{ matrix.ext }} - path: target/${{ matrix.target-triple }}/release/bitwarden_rs${{ matrix.ext }} + name: vaultwarden-${{ matrix.target-triple }}${{ matrix.ext }} + path: target/${{ matrix.target-triple }}/release/vaultwarden${{ matrix.ext }} # End Upload artifact to Github Actions @@ -145,7 +145,7 @@ jobs: # uses: Shopify/upload-to-release@1 # if: startsWith(github.ref, 'refs/tags/') # with: - # name: bitwarden_rs-${{ matrix.target-triple }}${{ matrix.ext }} - # path: target/${{ matrix.target-triple }}/release/bitwarden_rs${{ matrix.ext }} + # name: vaultwarden-${{ matrix.target-triple }}${{ matrix.ext }} + # path: target/${{ matrix.target-triple }}/release/vaultwarden${{ matrix.ext }} # repo-token: ${{ secrets.GITHUB_TOKEN }} # End Upload to github actions release |