-
Notifications
You must be signed in to change notification settings - Fork 107
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #781 from agrare/rake_task_update_database_types
Add a rake task to auto-update database types
- Loading branch information
Showing
5 changed files
with
1,213 additions
and
161 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -17,12 +17,16 @@ jobs: | |
with: | ||
ruby-version: 2.7 | ||
bundler-cache: true | ||
- name: Run instance_types rake task | ||
- name: Update ec2 instance types | ||
run: bundle exec rake aws:extract:instance_types | ||
- name: Update rds db instance types | ||
run: bundle exec rake aws:extract:database_types | ||
- name: Create Pull Request | ||
uses: peter-evans/create-pull-request@v4 | ||
with: | ||
add-paths: db/fixtures/aws_instance_types.yml | ||
add-paths: | | ||
db/fixtures/aws_instance_types.yml | ||
db/fixtures/aws_database_types.yml | ||
commit-message: Update AWS instance_types | ||
branch: update_aws_instance_types | ||
author: ManageIQ Bot <[email protected]> | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.