-
Notifications
You must be signed in to change notification settings - Fork 3
33 lines (31 loc) · 1.27 KB
/
update_website.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
name: On merge of protocol branch to main, build the protocol and add it to the website
on:
push:
branches:
- main
jobs:
build-website:
runs-on: ubuntu-latest
name: "add protocol to website"
steps:
- name: checkout the repository
uses: actions/checkout@v4
with:
fetch-depth: 2
- name: Get branch name of latest merged PR targeting main
run: |
RECENT_MERGED_BRANCH_NAME=$(git log --merges origin/main --oneline --grep='^Merge' -1 | grep -oe 'inbo/.*$' | awk -F '/' '{print $2}')
echo "RECENT_MERGED_BRANCH_NAME=$RECENT_MERGED_BRANCH_NAME" >> $GITHUB_ENV
- name: test
run: echo 'branch name =' $RECENT_MERGED_BRANCH_NAME
- name: Checkout repo and build website
if: (startsWith(env.RECENT_MERGED_BRANCH_NAME, 'sfp-')
|| startsWith(env.RECENT_MERGED_BRANCH_NAME, 'sip-')
|| startsWith(env.RECENT_MERGED_BRANCH_NAME, 'sop-')
|| startsWith(env.RECENT_MERGED_BRANCH_NAME, 'sap-')
|| startsWith(env.RECENT_MERGED_BRANCH_NAME, 'spp-'))
uses: inbo/actions/protocol_website@main
with:
PAT: ${{ secrets.PAT }}
GITHUB_REPOSITORY_DEST: "inbo/protocols"
RECENT_MERGED_BRANCH_NAME: $RECENT_MERGED_BRANCH_NAME