Skip to content

Commit

Permalink
adds scripts
Browse files Browse the repository at this point in the history
  • Loading branch information
jesperancinha committed Jul 19, 2024
1 parent 823678a commit 3bd04e9
Show file tree
Hide file tree
Showing 2 changed files with 61 additions and 0 deletions.
33 changes: 33 additions & 0 deletions .github/workflows/whiskers-gradle-update.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,33 @@
name: Updates plugins

on:
schedule:
- cron: '0 0 * * 0'
workflow_dispatch:

jobs:
update-gradle:
runs-on: ubuntu-latest

steps:
- name: Checkout repository
uses: actions/checkout@v4

- name: Set up Node.js 20
uses: actions/setup-node@v4
with:
node-version: '20'

- name: Run dependency update script
run: make deps-gradle-update

- name: Create pull request
uses: peter-evans/create-pull-request@v6
with:
commit-message: Update gradle
branch: update-gradle
title: 'Update gradle'
body: |
This pull request updates the following dependencies:
- Current gradle updates
labels: dependencies
28 changes: 28 additions & 0 deletions .github/workflows/whiskers-java-update.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,28 @@
name: Updates java

on:
schedule:
- cron: '0 0 * * 0'
workflow_dispatch:

jobs:
update-java:
runs-on: ubuntu-latest

steps:
- name: Checkout repository
uses: actions/checkout@v4

- name: Run dependency update script
run: make deps-java-update

- name: Create pull request
uses: peter-evans/create-pull-request@v6
with:
commit-message: Update java
branch: update-java
title: 'Update java'
body: |
This pull request updates the JDK:
- Current plugin updates
labels: JDK

0 comments on commit 3bd04e9

Please sign in to comment.