mirror of
https://github.com/outbackdingo/labca.git
synced 2026-01-27 18:19:33 +00:00
Add workflow to regularly test if the patches can still be applied to latest boulder
This commit is contained in:
40
.github/workflows/try-bump.yml
vendored
Normal file
40
.github/workflows/try-bump.yml
vendored
Normal file
@@ -0,0 +1,40 @@
|
||||
name: Try Boulder Bump
|
||||
|
||||
on:
|
||||
schedule:
|
||||
- cron: '30 5 * * 5'
|
||||
workflow_dispatch:
|
||||
|
||||
jobs:
|
||||
try-bump:
|
||||
runs-on: ubuntu-latest
|
||||
strategy:
|
||||
fail-fast: false
|
||||
|
||||
steps:
|
||||
- name: Checkout Self
|
||||
uses: actions/checkout@v3
|
||||
|
||||
- uses: oprypin/find-latest-tag@v1
|
||||
with:
|
||||
repository: letsencrypt/boulder
|
||||
id: boulder
|
||||
|
||||
- run: echo "Boulder is at version ${{ steps.boulder.outputs.tag }}"
|
||||
|
||||
- uses: actions/checkout@v3
|
||||
with:
|
||||
repository: letsencrypt/boulder
|
||||
ref: ${{ steps.boulder.outputs.tag }}
|
||||
path: boulder
|
||||
|
||||
- name: Apply our code patches
|
||||
run: |
|
||||
cd boulder
|
||||
../patch.sh
|
||||
|
||||
- name: Apply our config patches
|
||||
run: |
|
||||
cd boulder
|
||||
../patch-cfg.sh
|
||||
|
||||
Reference in New Issue
Block a user