Skip to content

Commit

Permalink
Merge pull request #57 from silinternational/develop
Browse files Browse the repository at this point in the history
run deploy workflow on branches, not tags, not Terraform
  • Loading branch information
briskt authored Nov 6, 2024
2 parents 8573f19 + ab4e850 commit 83e9c91
Show file tree
Hide file tree
Showing 5 changed files with 25 additions and 20 deletions.
4 changes: 4 additions & 0 deletions .github/CODEOWNERS
Validating CODEOWNERS rules …
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
* @silinternational/developers
/terraform @silinternational/tf-devs
*.go @silinternational/go-devs
go.* @silinternational/go-devs
2 changes: 2 additions & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,8 @@ name: Continuous Integration

on:
push:
branches: [ '**' ]
paths-ignore: [ 'terraform/**' ]

jobs:
test-and-deploy:
Expand Down
34 changes: 17 additions & 17 deletions terraform/.terraform.lock.hcl

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

3 changes: 1 addition & 2 deletions terraform/main.tf
Original file line number Diff line number Diff line change
Expand Up @@ -4,8 +4,7 @@
*/
module "serverless-user" {
source = "silinternational/serverless-user/aws"
version = "0.1.3"
version = "~> 0.4"

app_name = "app-monitoring-archiver"
aws_region = var.aws_region
}
2 changes: 1 addition & 1 deletion terraform/versions.tf
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ terraform {
required_providers {
aws = {
source = "hashicorp/aws"
version = "~> 4.0"
version = "~> 5.0"
}
}
}

0 comments on commit 83e9c91

Please sign in to comment.