Skip to content

Commit

Permalink
Merge branch 'pre-development' into dependabot/npm_and_yarn/pages/pre…
Browse files Browse the repository at this point in the history
…-development/postcss-8.4.47
  • Loading branch information
maretol authored Oct 20, 2024
2 parents 05c3039 + 15e78a0 commit 9e82556
Show file tree
Hide file tree
Showing 3 changed files with 73 additions and 56 deletions.
16 changes: 16 additions & 0 deletions .github/workflows/dependabot_npm_install.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,7 @@ on:
- pre-development
paths:
- 'pages/**'
workflow_dispatch:

env:
NODE_VERSION: 20.16.0
Expand All @@ -22,6 +23,8 @@ jobs:
name: bot
steps:
- uses: actions/checkout@v4
with:
ref: ${{ github.head_ref }}

- name: setup node
uses: actions/setup-node@v4
Expand All @@ -31,10 +34,23 @@ jobs:
- name: npm install
run: npm install

- name: get diff
id: diff
continue-on-error: true
run: |
git add -N .
git diff --name-only --exit-code
- name: commit and push
if: steps.diff.outcome == 'failure'
run: |
set -x
git config user.name "maretol-bot"
git config user.email "[email protected]"
git add .
git commit -m "[bot]chore(deps): update dependencies"
git push
recall-deploy-dry:
needs: npm-install
uses: ./.github/workflows/deploy_dryrun.yaml
1 change: 1 addition & 0 deletions .github/workflows/deploy_dryrun.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,7 @@ on:
branches:
- development
- pre-development
workflow_call:

env:
NODE_VERSION: 20.16.0
Expand Down
112 changes: 56 additions & 56 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

0 comments on commit 9e82556

Please sign in to comment.