2023-02-13 10:23:30 +00:00
|
|
|
# Data Update:
|
|
|
|
# EC2 Instance Offerings
|
|
|
|
#
|
|
|
|
# This Github Action:
|
|
|
|
# - executes the script that updates the EC2 instance offerings that come bundled with Moto
|
|
|
|
# - creates a PR
|
|
|
|
#
|
|
|
|
name: "DataUpdate_EC2InstanceOfferings"
|
|
|
|
|
|
|
|
on:
|
|
|
|
schedule:
|
|
|
|
- cron: '00 12 * * 0'
|
|
|
|
workflow_dispatch:
|
|
|
|
|
|
|
|
jobs:
|
|
|
|
update:
|
|
|
|
name: Update EC2 Instance Offerings
|
|
|
|
runs-on: ubuntu-latest
|
|
|
|
if: ${{ github.ref == 'refs/heads/master' && github.repository == 'getmoto/moto' }}
|
|
|
|
permissions:
|
|
|
|
id-token: write
|
|
|
|
contents: write
|
|
|
|
pull-requests: write
|
|
|
|
|
|
|
|
steps:
|
|
|
|
- name: Checkout repository
|
|
|
|
uses: actions/checkout@v3
|
|
|
|
|
|
|
|
- name: Set up Python 3.9
|
|
|
|
uses: actions/setup-python@v4
|
|
|
|
with:
|
|
|
|
python-version: 3.9
|
|
|
|
|
|
|
|
- name: Configure AWS
|
|
|
|
uses: aws-actions/configure-aws-credentials@v1
|
|
|
|
with:
|
|
|
|
aws-region: us-east-1
|
|
|
|
role-to-assume: arn:aws:iam::486285699788:role/GithubActionsRole
|
|
|
|
|
|
|
|
- name: Pull EC2 instance types from AWS
|
|
|
|
uses: technote-space/create-pr-action@v2
|
|
|
|
with:
|
|
|
|
GITHUB_TOKEN: ${{ secrets.PR_ACCESS_TOKEN }}
|
|
|
|
EXECUTE_COMMANDS: |
|
|
|
|
pip install boto3
|
|
|
|
scripts/ec2_get_instance_type_offerings.py
|
|
|
|
COMMIT_MESSAGE: 'chore: update EC2 Instance Offerings'
|
|
|
|
COMMIT_NAME: 'Moto Admin'
|
|
|
|
COMMIT_EMAIL: 'admin@getmoto.org'
|
2023-02-19 14:21:34 +00:00
|
|
|
PR_BRANCH_NAME: 'chore-update-ec2-offerings-${PR_ID}'
|
2023-02-13 10:23:30 +00:00
|
|
|
PR_TITLE: 'chore: update EC2 Instance Offerings'
|