-
Notifications
You must be signed in to change notification settings - Fork 31
47 lines (38 loc) · 1.26 KB
/
update-dependencies.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
name: update-dependencies
on:
push:
branches:
- 'dep-updater'
jobs:
update-dependencies:
runs-on: ubuntu-latest
env:
TARGET_SUBMODULE: bugsnag-cocoa
TARGET_VERSION: v6.1.0
BUNDLE_GITHUB__COM: ${{ secrets.BUNDLE_ACCESS_TOKEN }}
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
steps:
- uses: actions/checkout@v4
with:
ref: dep-updater
- run: |
git config --global user.name 'Bumpsnag bot'
git config --global user.email ''
- run: git fetch --prune --unshallow
- run: git submodule update --init --recursive
- name: Install ruby
uses: ruby/setup-ruby@v1
with:
ruby-version: 2.7
bundler-cache: true
- run: bundle exec rake dependencies:update
- name: List current branch name
id: current-branch
run: echo "branch=$(git rev-parse --abbrev-ref HEAD)" >> $GITHUB_OUTPUT
- name: Create pull request
if: ${{ steps.current-branch.outputs.branch != 'dep-updater'}}
run: gh pr create -B dep-updater |
-H bumpsnag-$TARGET_SUBMODULE-$TARGET_VERSION |
--title 'Update $TARGET_SUBMODULE to version $TARGET_VERSION' |
--body 'Created by bumpsnag' |
--reviewer cawllec