From 1edb8343c3d06b82892bae2345c0c9ec523e1ef9 Mon Sep 17 00:00:00 2001 From: "amplify-security[bot]" <136656519+amplify-security[bot]@users.noreply.github.com> Date: Thu, 4 Dec 2025 17:14:26 +0000 Subject: [PATCH] Amplify installation committed by Dustin null --- .github/workflows/amplify.yml | 25 +++++++++++++++++++++++++ 1 file changed, 25 insertions(+) create mode 100644 .github/workflows/amplify.yml diff --git a/.github/workflows/amplify.yml b/.github/workflows/amplify.yml new file mode 100644 index 00000000000..11bba0273b6 --- /dev/null +++ b/.github/workflows/amplify.yml @@ -0,0 +1,25 @@ +# .github/workflows/amplify.yml +--- +name: Amplify Security +on: + pull_request: {} + workflow_dispatch: {} + push: + branches: ["main", "develop"] + +permissions: + contents: read + id-token: write + +jobs: + amplify-security-scan: + name: Amplify Security Scan + runs-on: ubuntu-latest + if: (github.event_name != 'pull_request' || + github.repository_id == github.event.pull_request.head.repo.id) && + github.actor != 'dependabot[bot]' + steps: + - name: Checkout + uses: actions/checkout@v5 + - name: Amplify Runner + uses: amplify-security/runner-action@main