No description
  • Python 91.1%
  • Dockerfile 8.9%
Find a file
David Schmidt d8dd7f5b7f gcloud path is not coming from input parameters
Signed-off-by: David Schmidt <51931019+schmidtd@users.noreply.github.com>
2022-12-09 17:36:10 -05:00
.github/workflows Initial commit 2022-08-03 13:10:24 -04:00
promotegcptoprod gcloud path is not coming from input parameters 2022-12-09 17:36:10 -05:00
promotesnapshot Remove all references to deprecated set-output 2022-10-17 16:03:45 -04:00
promotetoprod Remove all references to deprecated set-output 2022-10-17 16:03:45 -04:00
reapamibyname Remove all references to deprecated set-output 2022-10-17 16:03:45 -04:00
reapsnapshot Take all regions into account when manipulating S3 2022-10-18 15:04:23 -04:00
.gitignore Add account ID to output 2022-08-24 12:44:25 -04:00
LICENSE Initial commit 2022-08-03 13:10:24 -04:00
README.md Initial commit 2022-08-03 13:10:24 -04:00
requirements.txt Initial drop of reaper 2022-08-10 16:07:18 -04:00
SECURITY.md Initial commit 2022-08-03 13:10:24 -04:00
tox.ini Initial commit 2022-08-03 13:10:24 -04:00

aap-awscf-amimgmt

Tasks for managing AWS AMI and associated artifacts

Usage

Example workflow

name: My Workflow
on: [push, pull_request]
jobs:
  build:
    runs-on: ubuntu-latest
    steps:
    - uses: actions/checkout@master
    - name: Run action

      # Address the specific action here
      uses: ansible/aap-awscf-amimgmt/reapsnapshot@master

      # Inputs go here
      with:
        myInput: world

Inputs

Input Description
myInput An example mandatory input

Outputs

Output Description
myOutput An example output (returns 'Hello world')

Using outputs

Show people how to use your outputs in another action.

steps:
- uses: actions/checkout@master
- name: Run action
  id: myaction

  # Put your action name here
  uses: ansible/aap-awscf-amimgmt/reapsnapshot@master

  # Put an example of your mandatory arguments here
  with:
    myInput: world

# Put an example of using your outputs here
- name: Check outputs
    run: |
    echo "Outputs - ${{ steps.myaction.outputs.myOutput }}"