Add workflow to regularly test if the patches can still be applied to latest boulder

This commit is contained in:
Arjan H
2022-09-17 12:21:48 +02:00
parent 03970488c4
commit 516aa4b605
4 changed files with 73 additions and 18 deletions

40
.github/workflows/try-bump.yml vendored Normal file
View 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