forked from orange-cloudfoundry/k3s-boshrelease
-
Notifications
You must be signed in to change notification settings - Fork 1
53 lines (47 loc) · 1.72 KB
/
create-release-branches.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
41
42
43
44
45
46
47
48
49
50
51
52
name: create-release-branches
permissions:
contents: write # allow git push to repo and the github release and its artefact
on:
workflow_call:
inputs:
force_push:
description: 'Force recreation of release branches from min version'
required: true
type: boolean
default: false
workflow_dispatch:
inputs:
force_push:
description: 'Force recreation of release branches from min version'
required: true
type: boolean
default: false
schedule:
- cron: "30 10 * * 1" # “At 10:30 on Monday.” https://crontab.guru/#30_10_*_*_1
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: checkout
uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332 # v4
with:
fetch-depth: 0
# GH cli is already pre-install, see https://docs.github.com/en/actions/using-workflows/using-github-cli-in-workflows
- name: Install yq cli
#See https://github.com/marketplace/actions/install-a-binary-from-github-releases
uses: jaxxstorm/action-install-gh-release@25d5e2dd555cd74f1fab9ac1e6ea117acde2c0c4 # v1.12.0
with:
repo: mikefarah/yq
tag: v4.44.3
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} # reduce potential rate limiting
- name: create-missing-branches
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
FORCE_PUSH: ${{ inputs.force_push}}
run: |
# configure git
git config --global user.name "workflows/k3s-boshrelease/create-release-branches"
git config --global user.email "<>"
git config --global --add safe.directory /github/workspace
./create-release-branches.bash