Skip to content

Commit 32a59d7

Browse files
committed
Adjusts to lock-maintenance
1 parent 8aa8868 commit 32a59d7

File tree

1 file changed

+3
-6
lines changed

1 file changed

+3
-6
lines changed

.github/workflows/lock-maintenance.yml

+3-6
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,6 @@ on:
55
jobs:
66
build:
77
name: Bump transitional dependencies
8-
if: github.repository == 'yeoman/environment'
98
runs-on: ubuntu-latest
109
steps:
1110
- uses: actions/checkout@v2
@@ -16,16 +15,14 @@ jobs:
1615
- name: Create commit
1716
run: |
1817
rm package-lock.json
19-
npm install || npm install --force
20-
git add .
21-
git config --local user.email "41898282+github-actions[bot]@users.noreply.github.com"
22-
git config --local user.name "Github Actions"
23-
git commit -a -m "Bump transitional dependencies" || true
18+
npm install
2419
- name: Create Pull Request
2520
uses: peter-evans/[email protected]
2621
with:
2722
token: ${{ secrets.GITHUB_TOKEN }}
2823
commit-message: 'Bump transitional dependencies'
24+
committer: 'Github Actions <41898282+github-actions[bot]@users.noreply.github.com>'
25+
author: 'Github Actions <41898282+github-actions[bot]@users.noreply.github.com>'
2926
title: 'Bump transitional dependencies'
3027
body: Transitional dependencies bump.
3128
labels: 'dependencies'

0 commit comments

Comments
 (0)