-
Notifications
You must be signed in to change notification settings - Fork 11
43 lines (42 loc) · 1.51 KB
/
merge_release_pr.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
name: Merge release pr
on:
pull_request:
types: opened
jobs:
approve-release-pull-request:
if: |
(startsWith(github.head_ref, 'release-v') ||
startsWith(github.head_ref, 'release/v')) &&
startsWith(github.base_ref, 'main')
startsWith(github.event.pull_request.user.login, 'mapbox-github-ci-writer-public-') &&
github.event.pull_request.user.id == '93400552'
runs-on: ubuntu-latest
steps:
- name: Approve Pull Request
run: gh pr review $PR --approve
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
PR: ${{ github.event.pull_request.html_url }}
re-trigger-circleci-for-cocoapods:
if: |
(startsWith(github.head_ref, 'release-v') ||
startsWith(github.head_ref, 'release/v')) &&
startsWith(github.base_ref, 'main')
startsWith(github.event.pull_request.user.login, 'mapbox-github-ci-writer-public-') &&
github.event.pull_request.user.id == '93400552'
runs-on: ubuntu-latest
timeout-minutes: 40
steps:
- name: Rerun circleci
timeout-minutes: 40
run: |
# Rerun circleCI for cocoapods during 36 minutes
for n in {1..3};
do
sleep 720
curl --request POST \
--url https://circleci.com/api/v2/project/github/mapbox/mapbox-common-ios/pipeline \
--header 'Circle-Token: ${{ secrets.CCI_TOKEN }}' \
--header 'content-type: application/json' \
--data '{"branch":"${{ github.head_ref }}"}'
done