From 4ed4bbe2df8f3c64678ee50504826b483ca1a305 Mon Sep 17 00:00:00 2001 From: Jun-te Kim Date: Thu, 13 Mar 2025 20:11:50 +0000 Subject: [PATCH] daily script --- .github/workflows/sharepoint_validator.yml | 24 ++++++++++++++++++++++ 1 file changed, 24 insertions(+) create mode 100644 .github/workflows/sharepoint_validator.yml diff --git a/.github/workflows/sharepoint_validator.yml b/.github/workflows/sharepoint_validator.yml new file mode 100644 index 0000000..cb8a680 --- /dev/null +++ b/.github/workflows/sharepoint_validator.yml @@ -0,0 +1,24 @@ +on: + schedule: + - cron: '0 9 * * *' + workflow_dispatch: + +jobs: + check_status_code: + runs-on: ubuntu-22.04 + steps: + - uses: actions/checkout@v3 + + - name: Set up Python + uses: actions/setup-python@v4 + with: + python-version: '3.12' + + - name: Install dependencies + run: | + pip install poetry + poetry install + + - name: run script + run: | + bash run_daily_script.sh \ No newline at end of file