From 46da8db278c09888d6155e6111d1bc7189fa20df Mon Sep 17 00:00:00 2001 From: Arkadii Yakovets Date: Wed, 21 Aug 2024 09:23:22 -0700 Subject: [PATCH] Add automatic snapshots update workflow --- .github/workflows/update-snapshots.yml | 52 ++++++++++++++++++++++++++ 1 file changed, 52 insertions(+) create mode 100644 .github/workflows/update-snapshots.yml diff --git a/.github/workflows/update-snapshots.yml b/.github/workflows/update-snapshots.yml new file mode 100644 index 000000000..108a3f961 --- /dev/null +++ b/.github/workflows/update-snapshots.yml @@ -0,0 +1,52 @@ +name: Update snapshots + +on: + push: + branches: + - dev + workflow_dispatch: + +jobs: + update-snapshots: + name: Update snapshots + if: github.repository == 'vacanza/python-holidays' + permissions: + contents: write + pull-requests: write + runs-on: ubuntu-latest + steps: + - name: Check out repository + uses: actions/checkout@v4 + + - name: Set up Python + uses: actions/setup-python@v5 + with: + cache: pip + cache-dependency-path: | + requirements/build.txt + requirements/dev.txt + check-latest: true + python-version: '3.12' + + - name: Install dependencies + run: | + python -m pip install --upgrade pip + python -m pip install -r requirements/build.txt + python -m pip install -r requirements/dev.txt + make package + python -m pip install dist/*.tar.gz + + - name: Generate snapshots + run: | + make snapshot + + - uses: peter-evans/create-pull-request@v6.1.0 + with: + base: dev + body: Automatically generated snapshots update. + branch: update-snapshots + commit-message: 'Update snapshots [skip ci]' + committer: github-actions[bot] + delete-branch: true + title: 'chore: Update snapshots' + token: ${{ github.token }}