Bump actionmailer from 7.2.1 to 7.2.1.1 (#176) #219
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: update gemfile.lock file | |
permissions: write-all | |
on: | |
push: | |
branches: | |
- main | |
schedule: | |
- cron: '3 7 */33 * *' | |
workflow_dispatch: | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@main | |
with: | |
persist-credentials: false # otherwise, the token used is the GITHUB_TOKEN, instead of your personal token | |
fetch-depth: 0 # otherwise, you will failed to push refs to dest repo | |
- name: Set up Ruby | |
uses: ruby/setup-ruby@master | |
with: | |
ruby-version: debug | |
- name: Build new gemfile lock with Rake | |
run: | | |
rm --force Gemfile.lock | |
gem install bundler | |
bundle install --jobs 9 --retry 3 | |
- uses: peter-evans/create-pull-request@main | |
with: | |
author: wafbot <wafbot+dance_scorer@fawong.com> | |
committer: wafbot <wafbot+dance_scorer@fawong.com> | |
commit-message: "[ci] update gemfile.lock" | |
title: "[ci] update gemfile.lock" | |
delete-branch: true |