-
Notifications
You must be signed in to change notification settings - Fork 130
40 lines (38 loc) · 1.04 KB
/
version_bumper.yml
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
29
30
31
32
33
34
35
36
37
38
39
40
---
name: Check for new upstream releases
on:
schedule:
- cron: '21 14 * * *'
workflow_call:
inputs:
role-repos:
required: true
type: string
jobs:
discover-role-repos:
runs-on: ubuntu-latest
outputs:
role-repos: ${{ steps.discover.outputs.result }}
container:
image: quay.io/prometheus/golang-builder:base
steps:
- uses: actions/checkout@v4
- name: Get repos for each role
id: discover
run: ./.github/scripts/discover_role_repos.sh >> "$GITHUB_OUTPUT"
bump_role:
runs-on: ubuntu-latest
needs: discover-role-repos
permissions:
contents: write
pull-requests: write
container:
image: quay.io/prometheus/golang-builder:base
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
strategy:
matrix:
include: ${{ fromJson(needs.discover-role-repos.outputs.role-repos) }}
steps:
- uses: actions/checkout@v4
- run: ./.github/scripts/version_updater.sh ${{ matrix.repo }} ${{ matrix.role }} ${{ matrix.type }}