Browse Source

Merge branch '1.2.x'

pull/1609/head
Steve Riesenberg 2 years ago
parent
commit
6eda8c6a0e
No known key found for this signature in database
GPG Key ID: 3D0169B18AB8F0A9
  1. 16
      .github/workflows/deploy-docs.yml
  2. 2
      .github/workflows/pr-build-workflow.yml
  3. 2
      .github/workflows/release-scheduler.yml

16
.github/workflows/deploy-docs.yml

@ -1,21 +1,29 @@ @@ -1,21 +1,29 @@
name: Deploy Docs
on:
push:
tags: '**'
branches-ignore:
- "gh-pages"
- "dependabot/**"
- "0.4.x"
- "1.0.x"
- "1.1.x"
tags:
- "**"
repository_dispatch:
types: request-build-reference # legacy
#schedule:
#- cron: '0 10 * * *' # Once per day at 10am UTC
workflow_dispatch:
permissions:
actions: write
jobs:
build:
runs-on: ubuntu-latest
if: github.repository_owner == 'spring-projects'
steps:
- name: Checkout
uses: actions/checkout@v3
uses: actions/checkout@v4
with:
ref: docs-build
fetch-depth: 1

2
.github/workflows/pr-build-workflow.yml

@ -15,7 +15,7 @@ jobs: @@ -15,7 +15,7 @@ jobs:
jdk: [17]
fail-fast: false
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
- name: Set up JDK ${{ matrix.jdk }}
uses: spring-io/spring-gradle-build-action@v2
with:

2
.github/workflows/release-scheduler.yml

@ -18,7 +18,7 @@ jobs: @@ -18,7 +18,7 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v3
uses: actions/checkout@v4
with:
fetch-depth: 1
- name: Dispatch

Loading…
Cancel
Save