Content and dependencies update #431
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
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/[email protected] | |
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 }} |