-
Notifications
You must be signed in to change notification settings - Fork 15
28 lines (28 loc) · 972 Bytes
/
syncVersion.yml
File metadata and controls
28 lines (28 loc) · 972 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
name: Sync Versions
on:
schedule:
- cron: "0 */8 * * *"
workflow_dispatch:
permissions:
contents: write
pull-requests: write
jobs:
sync:
runs-on: ubuntu-latest
env:
GIT_USER_NAME: 'grails-build'
GIT_USER_EMAIL: 'grails-build@users.noreply.github.com'
steps:
- name: "📥 Checkout repository"
uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2
- name: "🔄 Sync Latest Version"
uses: ./.github/actions/sync-latest-version
- name: "✨ Create Pull Request"
uses: peter-evans/create-pull-request@5f6978faf089d4d20b00c7766989d076bb2fc7f1 # v8.1.1
with:
author: ${{ env.GIT_USER_NAME }} <${{ env.GIT_USER_EMAIL }}>
commit-message: Update Plugins Metadata File
title: 'Update Plugins Metadata'
body: Update versions/coordinates of plugins.
labels: "type: update-latest-version"
branch: updateLatestVersion