From d74cb30715ccb089fbe92f792e3240ba6f70f003 Mon Sep 17 00:00:00 2001 From: Dai MIKURUBE Date: Thu, 4 Jul 2024 17:46:30 +0900 Subject: [PATCH] S3 --- .github/workflows/input-s3.yml | 27 +++++++++++++++++++++++++++ 1 file changed, 27 insertions(+) create mode 100644 .github/workflows/input-s3.yml diff --git a/.github/workflows/input-s3.yml b/.github/workflows/input-s3.yml new file mode 100644 index 0000000..86014e1 --- /dev/null +++ b/.github/workflows/input-s3.yml @@ -0,0 +1,27 @@ +name: Input with S3 +on: + pull_request: + push: + schedule: + - cron: "0 18 * * *" # 3am in Asia/Tokyo +jobs: + input-with-postgresql: + runs-on: ubuntu-latest + # push: always run. + # pull_request: run only when the PR is submitted from a forked repository, not within this repository. + if: github.event_name == 'push' || github.event.pull_request.head.repo.full_name != github.repository + strategy: + fail-fast: false + steps: + - uses: actions/checkout@v4 + - name: Set up OpenJDK 8 + uses: actions/setup-java@v4 + with: + java-version: 8 + distribution: "temurin" + - name: Download Embulk + uses: ./.github/actions/install-embulk + with: + version: "0.11.3" + - name: List files + run: ls -la