Skip to content

Content and dependencies update #417

Content and dependencies update

Content and dependencies update #417

Workflow file for this run

name: Content and dependencies update
on:
schedule:
- cron: '4 10 * * *'
workflow_dispatch:
jobs:
build:
runs-on: ubuntu-latest
permissions:
issues: write
pull-requests: write
contents: write
steps:
- uses: actions/checkout@v4
- name: Setup NodeJS
uses: actions/setup-node@v3
with:
node-version: 20
- name: Run Bootstrap Italia and content update
run: |
npm i bootstrap-italia@latest
npm run prepare-lib
npm run prepare-content
- name: Create Pull Request
uses: peter-evans/create-pull-request@v7.0.5
with:
title: "chore(deps): update bootstrap italia and content"
commit-message: "chore(deps): update bootstrap italia and content"
branch: feature/update-assets
token: ${{ secrets.DEVELOPERS_ITALIA_DROID_GITHUB_TOKEN }}