chore: Add an action to test #1
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
on: [push] | |
jobs: | |
test_action_job: | |
runs-on: ubuntu-latest | |
name: Run AWS Eco Runner | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v4 | |
- name: Execute Action Start | |
uses: ./ | |
with: | |
instances_id: '["i-048cc57d9aba24d87"]' | |
action: "start" | |
- name: Execute Action Stop | |
uses: ./ | |
with: | |
instances_id: '["i-048cc57d9aba24d87"]' | |
action: "STOP" |