From 125dba452628083516dbcd31ba180125272a1456 Mon Sep 17 00:00:00 2001 From: Simon Norris Date: Fri, 16 Aug 2024 17:35:16 -0700 Subject: [PATCH] add primary workflow --- .github/workflows/harvest-restrictions.yaml | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) create mode 100644 .github/workflows/harvest-restrictions.yaml diff --git a/.github/workflows/harvest-restrictions.yaml b/.github/workflows/harvest-restrictions.yaml new file mode 100644 index 0000000..e41c1b8 --- /dev/null +++ b/.github/workflows/harvest-restrictions.yaml @@ -0,0 +1,16 @@ +name: harvest-restrictions +run-name: ${{ github.actor }} Full harvest-restrictions workflow +on: + workflow_dispatch: +env: + AWS_ACCESS_KEY_ID: ${{ secrets.AWS_ACCESS_KEY_ID }} + AWS_SECRET_ACCESS_KEY: ${{ secrets.AWS_SECRET_ACCESS_KEY }} + OBJECTSTORE_BUCKET: ${{ secrets.OBJECTSTORE_BUCKET }} +jobs: + download: + uses: ./.github/workflows/download.yaml + secrets: inherit + process: + uses: ./.github/workflows/process.yaml + secrets: inherit + needs: download \ No newline at end of file