Skip to content

Commit

Permalink
add repository test
Browse files Browse the repository at this point in the history
  • Loading branch information
Michael Long committed Apr 11, 2024
1 parent ec8bc53 commit 5bdcba0
Showing 1 changed file with 43 additions and 0 deletions.
43 changes: 43 additions & 0 deletions .github/workflows/test_repository.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,43 @@
name: Test Repository Use Case

# This workflow tests that the action can successfully
# scan a GitHub repository. This workflow runs automatically
# every 6 hours, and on pushes.

on:
schedule:
- cron: '0 */6 * * *' # runs every 6 hours
push:
branches: #
- '*'

jobs:
daily_job:
runs-on: ubuntu-latest
environment:
name: plugin-development

steps:
- name: Configure AWS credentials
uses: aws-actions/configure-aws-credentials@v4
with:
aws-region: ${{ secrets.AWS_REGION }}
aws-access-key-id: ${{ secrets.AWS_ACCESS_KEY_ID }}
aws-secret-access-key: ${{ secrets.AWS_SECRET_ACCESS_KEY }}
# TODO: use an IAM role

- name: Test Repository Scan
uses: aws/amazon-inspector-github-actions-plugin@main
# TODO: update this to point to public v1.0.0 release
with:
artifact_type: 'repository'
artifact_path: './' # TODO: make this a specific sub-directory so we have predictable output

# TODO: read the repository results and validate correctness

# only run if the previous step failed
- name: Notify maintainers of validation failure (repository)
if: ${{ failure() }}
run: echo "this feature is not implemented"
# TODO: add steps to send notification to a Lambda to cut a ticket on job failure

0 comments on commit 5bdcba0

Please sign in to comment.