Skip to content

Commit

Permalink
Merge pull request #41 from pbs/CAT-23697
Browse files Browse the repository at this point in the history
rename rtx to mise
  • Loading branch information
crzbarcea authored Feb 22, 2024
2 parents cc30853 + d969ebe commit 7d61cc5
Show file tree
Hide file tree
Showing 6 changed files with 15 additions and 15 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/document.yml
Original file line number Diff line number Diff line change
Expand Up @@ -28,8 +28,8 @@ jobs:
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}

- name: Setup rtx
uses: jdx/rtx-action@v1
- name: Setup mise
uses: jdx/mise-action@v2

- name: "Generate documentation"
run: ./scripts/document.sh
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/format.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,8 +21,8 @@ jobs:
- name: "Checkout"
uses: actions/checkout@main

- name: Setup rtx
uses: jdx/rtx-action@v1
- name: Setup mise
uses: jdx/mise-action@v2

- name: "Format"
run: ./scripts/format.sh
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/lint.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,8 +18,8 @@ jobs:
- name: "Checkout"
uses: actions/checkout@main

- name: Setup rtx
uses: jdx/rtx-action@v1
- name: Setup mise
uses: jdx/mise-action@v2

- name: "Lint"
run: ./scripts/lint.sh
4 changes: 2 additions & 2 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,8 +10,8 @@ jobs:
- name: Checkout code
uses: actions/checkout@main

- name: Setup rtx
uses: jdx/rtx-action@v1
- name: Setup mise
uses: jdx/mise-action@v2

- name: "Run document script if necessary"
run: |
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/validate.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,8 +21,8 @@ jobs:
- name: "Checkout"
uses: actions/checkout@main

- name: Setup rtx
uses: jdx/rtx-action@v1
- name: Setup mise
uses: jdx/mise-action@v2

- name: "Validate Module"
run: ./scripts/validate.sh
10 changes: 5 additions & 5 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
Use this URL for the source of the module. See the usage examples below for more details.

```hcl
github.com/pbs/terraform-aws-namespace-module?ref=0.1.23
github.com/pbs/terraform-aws-namespace-module?ref=x.y.z
```

### Alternative Installation Methods
Expand Down Expand Up @@ -44,7 +44,7 @@ Integrate this module like so:

```hcl
module "namespace" {
source = "github.com/pbs/terraform-aws-namespace-module?ref=0.1.23"
source = "github.com/pbs/terraform-aws-namespace-module?ref=x.y.z"
# Tagging Parameters
organization = var.organization
Expand All @@ -60,7 +60,7 @@ module "namespace" {

```hcl
module "namespace" {
source = "github.com/pbs/terraform-aws-namespace-module?ref=0.1.23"
source = "github.com/pbs/terraform-aws-namespace-module?ref=x.y.z"
type = "private"
name = "example.private"
Expand All @@ -79,7 +79,7 @@ module "namespace" {

```hcl
module "namespace" {
source = "github.com/pbs/terraform-aws-namespace-module?ref=0.1.23"
source = "github.com/pbs/terraform-aws-namespace-module?ref=x.y.z"
type = "public"
name = "example.org"
Expand All @@ -98,7 +98,7 @@ module "namespace" {

If this repo is added as a subtree, then the version of the module should be close to the version shown here:

`0.1.23`
`x.y.z`

Note, however that subtrees can be altered as desired within repositories.

Expand Down

0 comments on commit 7d61cc5

Please sign in to comment.