-
-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Signed-off-by: Fabiana Campanari <[email protected]>
- Loading branch information
1 parent
05a27a6
commit ec90989
Showing
1 changed file
with
49 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,49 @@ | ||
name: 'Update static data' | ||
on: | ||
schedule: | ||
- cron: '0 0 * * 0' # Every Sunday at midnight | ||
workflow_dispatch: | ||
|
||
env: | ||
NODE_VERSION: 18 | ||
|
||
permissions: | ||
contents: read | ||
|
||
jobs: | ||
update-data: | ||
runs-on: ubuntu-latest | ||
permissions: | ||
contents: write | ||
pull-requests: write | ||
steps: | ||
- uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11 # v4.1.1 | ||
|
||
- name: Enable corepack | ||
shell: bash | ||
run: corepack enable | ||
|
||
- name: Set up Node.js ${{ env.NODE_VERSION }} | ||
uses: actions/setup-node@60edb5dd545a775178f52524783378180af0d1f8 # v4.0.2 | ||
with: | ||
node-version: ${{ env.NODE_VERSION }} | ||
cache: pnpm | ||
|
||
- name: Install dependencies | ||
run: pnpm install --frozen-lockfile | ||
|
||
- name: Update static data | ||
run: pnpm run update-static-data | ||
|
||
- name: Run Prettier | ||
run: pnpm prettier-fix | ||
|
||
- name: Create pull request | ||
uses: peter-evans/create-pull-request@a4f52f8033a6168103c2538976c07b467e8163bc # v6.0.1 | ||
with: | ||
author: 'Renovate Bot <[email protected]>' | ||
branch: 'chore/update-static-data' | ||
commit-message: 'fix(data): automatic update of static data' | ||
committer: 'Renovate Bot <[email protected]>' | ||
title: 'fix(data): automatic update of static data' | ||
assignees: rarkins,viceice |