Skip to content

Commit

Permalink
chore: don't use an action
Browse files Browse the repository at this point in the history
Signed-off-by: Christopher Phillips <32073428+spiffcs@users.noreply.github.com>
  • Loading branch information
spiffcs committed Oct 8, 2024
1 parent 8742683 commit 3e57b35
Showing 1 changed file with 8 additions and 5 deletions.
13 changes: 8 additions & 5 deletions .github/workflows/dependabot-build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -41,8 +41,11 @@ jobs:
run: |
npm run build
npm run package
- name: Commit changes
if: ${{ steps.dependabot-metadata.outputs.package-ecosystem == 'npm_and_yarn' }}
id: commit
uses: stefanzweifel/git-auto-commit-action@8621497c8c39c72f3e2a999a26b4ca1b5058a842 #v5.0.1
- name: Commit and push if it changed
run: |-
git config user.name "Anchore Automated"
git config user.email "actions@users.noreply.github.com"
git add -A
timestamp=$(date -u)
git commit --signoff -m "Latest build: ${timestamp}" || exit 0
git push

0 comments on commit 3e57b35

Please sign in to comment.