Skip to content

Commit

Permalink
IMP: github actions
Browse files Browse the repository at this point in the history
  • Loading branch information
GrimLink committed Nov 26, 2023
1 parent 257d96d commit 1b4bac6
Show file tree
Hide file tree
Showing 4 changed files with 172 additions and 1 deletion.
7 changes: 7 additions & 0 deletions .github/dependabot.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
version: 2
updates:
- package-ecosystem: npm
directory: "/"
schedule:
interval: monthly
open-pull-requests-limit: 2
40 changes: 40 additions & 0 deletions .github/workflows/dependency-update.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,40 @@
name: Dependency Update

env:
NODE: 18
GIT_USER: "Automated"
GIT_EMAIL: "[email protected]"
GIT_BRANCH: actions/update-icons

on:
pull_request:
types:
- closed

jobs:
dependency_update:
name: Update icons
runs-on: ubuntu-latest
if: |
github.event.pull_request.merged == true &&
startsWith(github.event.pull_request.head.ref, 'dependabot/')
steps:
- uses: actions/checkout@v3
- uses: actions/setup-node@v3
with:
node-version: "${{ env.NODE }}"
registry-url: https://registry.npmjs.org/
- run: npm ci
- run: npm run build
- name: Creating PR for new Icons
run: |-
timestamp=$(date +"%Y-%m-%d")
git config user.name ${{ env.GIT_USER }}
git config user.email ${{ env.GIT_EMAIL }}
git checkout -b "${{ env.GIT_BRANCH }}-${timestamp}"
git add -A
git commit -m "Update icons with dependency update" || exit 0
git push --set-upstream origin ${{ env.GIT_BRANCH }}-${timestamp}
gh pr create --title "Update icons with new dependency update" --body "This updates the Hyva version with the latest icons from Bootstrap Icons" -B main --label dependencies
env:
GH_TOKEN: ${{ secrets.GH_TOKEN }}
Loading

0 comments on commit 1b4bac6

Please sign in to comment.