Update Spring Boot Platform in embedded templates #403
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Update Spring Boot Platform in embedded templates | |
permissions: | |
contents: write | |
pull-requests: write | |
on: | |
schedule: | |
- cron: '0 */4 * * *' | |
jobs: | |
update: | |
name: Update Spring Boot Platform | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- uses: actions/setup-node@v3 | |
with: | |
node-version: 18 | |
- uses: actions/setup-java@v1 | |
with: | |
java-version: 17 | |
- name: Install NPM deps. | |
run: npm install axios xml2js octokit | |
- name: Create PR | |
env: | |
GITHUB_TOKEN: ${{ github.token }} | |
run: node ./hack/update-springboot-platform.js | |